diff options
author | Stefan Metzmacher <metze@samba.org> | 2011-09-07 20:35:51 +0200 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2011-09-08 10:21:50 +0200 |
commit | 3e227d8544a020d1aea24c38c9ca45a75d14c3f1 (patch) | |
tree | 607d31b7e117519742db8c5ebfd90a67a21781d3 /source3/client/client.c | |
parent | cdca1e0ac3c185856fbe2d061a30bfa8e71e4e1c (diff) | |
download | samba-3e227d8544a020d1aea24c38c9ca45a75d14c3f1.tar.gz samba-3e227d8544a020d1aea24c38c9ca45a75d14c3f1.tar.xz samba-3e227d8544a020d1aea24c38c9ca45a75d14c3f1.zip |
s3:libsmb: pass CLI_FULL_CONNECTION_* flags via cli_connect_nb()
metze
Autobuild-User: Stefan Metzmacher <metze@samba.org>
Autobuild-Date: Thu Sep 8 10:21:50 CEST 2011 on sn-devel-104
Diffstat (limited to 'source3/client/client.c')
-rw-r--r-- | source3/client/client.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/client/client.c b/source3/client/client.c index 110614ecd2..30f8b8baf4 100644 --- a/source3/client/client.c +++ b/source3/client/client.c @@ -5230,7 +5230,7 @@ static int do_message_op(struct user_auth_info *a_info) status = cli_connect_nb(desthost, have_ip ? &dest_ss : NULL, port ? port : 139, name_type, - lp_netbios_name(), Undefined, &cli); + lp_netbios_name(), Undefined, 0, &cli); if (!NT_STATUS_IS_OK(status)) { d_printf("Connection to %s failed. Error %s\n", desthost, nt_errstr(status)); return 1; |