diff options
Diffstat (limited to 'source4/client')
-rw-r--r-- | source4/client/client.c | 4 | ||||
-rw-r--r-- | source4/client/smbspool.c | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/source4/client/client.c b/source4/client/client.c index 68b30acc67..9a70c2e09f 100644 --- a/source4/client/client.c +++ b/source4/client/client.c @@ -2727,7 +2727,7 @@ static struct smbcli_state *do_connect(const char *server, const char *share) again: /* have to open a new connection */ - if (!(c=smbcli_state_init()) || !smbcli_socket_connect(c, server_n)) { + if (!(c=smbcli_state_init(NULL)) || !smbcli_socket_connect(c, server_n)) { d_printf("Connection to %s failed\n", server_n); return NULL; } @@ -2858,7 +2858,7 @@ static int do_message_op(void) server_name = dest_ip ? dest_ip : desthost; - if (!(cli=smbcli_state_init()) || !smbcli_socket_connect(cli, server_name)) { + if (!(cli=smbcli_state_init(NULL)) || !smbcli_socket_connect(cli, server_name)) { d_printf("Connection to %s failed\n", server_name); return 1; } diff --git a/source4/client/smbspool.c b/source4/client/smbspool.c index 25208ac93a..e81453a23b 100644 --- a/source4/client/smbspool.c +++ b/source4/client/smbspool.c @@ -279,7 +279,7 @@ smb_connect(const char *workgroup, /* I - Workgroup */ myname = get_myname(); - nt_status = smbcli_full_connection(&c, myname, server, NULL, 0, share, "?????", + nt_status = smbcli_full_connection(NULL, &c, myname, server, NULL, 0, share, "?????", username, workgroup, password, 0, NULL); free(myname); |