s3-lsa: Fix static list of luids in our privileges implementation.
[Samba/ekacnet.git] / testsuite / libsmbclient / src / read / read_7.c
blobfa8a783d7fab8a790d23fc716362cc8771d21a97
1 #include <stdio.h>
2 #include <stdlib.h>
3 #include <string.h>
4 #include <errno.h>
5 #include <libsmbclient.h>
7 #define MAX_BUFF_SIZE 255
8 char g_workgroup[MAX_BUFF_SIZE];
9 char g_username[MAX_BUFF_SIZE];
10 char g_password[MAX_BUFF_SIZE];
11 char g_server[MAX_BUFF_SIZE];
12 char g_share[MAX_BUFF_SIZE];
15 void auth_fn(const char *server, const char *share, char *workgroup, int wgmaxlen,
16 char *username, int unmaxlen, char *password, int pwmaxlen)
19 strncpy(workgroup, g_workgroup, wgmaxlen - 1);
21 strncpy(username, g_username, unmaxlen - 1);
23 strncpy(password, g_password, pwmaxlen - 1);
25 strcpy(g_server, server);
26 strcpy(g_share, share);
30 int main(int argc, char** argv)
32 int err = -1;
33 int fd = 0;
34 char* message = "Testing";
36 bzero(g_workgroup,MAX_BUFF_SIZE);
38 if ( argc == 4 )
41 strncpy(g_workgroup,argv[1],strlen(argv[1]));
42 strncpy(g_username,argv[2],strlen(argv[2]));
43 strncpy(g_password,argv[3],strlen(argv[3]));
45 fd = 10345; /* Random value for File Descriptor */
46 smbc_init(auth_fn, 0);
47 err = smbc_read(fd, message, sizeof(message));
49 if ( err < 0 )
50 err = 1;
52 else
53 err = 0;
57 return err;