diff options
Diffstat (limited to 'testsuite/libsmbclient/src/init/init_2.c')
-rw-r--r-- | testsuite/libsmbclient/src/init/init_2.c | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/testsuite/libsmbclient/src/init/init_2.c b/testsuite/libsmbclient/src/init/init_2.c deleted file mode 100644 index 120160297b..0000000000 --- a/testsuite/libsmbclient/src/init/init_2.c +++ /dev/null @@ -1,23 +0,0 @@ -#include <stdio.h> -#include <stdlib.h> -#include <string.h> -#include <errno.h> -#include <libsmbclient.h> - - -int main(int argc, char **argv ) -{ - int err = -1; - - if ( argc > 1 ) - { - err = smbc_init(NULL, atoi(argv[1])); - - if ( err < 0 ) - err = 1; - - } - - return err; - -} |