diff options
author | Jeremy Allison <jra@samba.org> | 2009-01-14 16:08:19 -0800 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2009-01-14 16:08:19 -0800 |
commit | 907f085296e4c61410a7a0e2cfcd6a9db8176b16 (patch) | |
tree | 315254d40cfc716372a4641a089df8aaac78cbfd /source3/lib/netapi | |
parent | 592ee76341de2936b1171ddb391a65a84836c95d (diff) | |
download | samba-907f085296e4c61410a7a0e2cfcd6a9db8176b16.tar.gz samba-907f085296e4c61410a7a0e2cfcd6a9db8176b16.tar.bz2 samba-907f085296e4c61410a7a0e2cfcd6a9db8176b16.zip |
Remove smbclient globals that bled into clidfs.c. Now we only have
the connections list and authentication structures to worry about.
Jeremy
Diffstat (limited to 'source3/lib/netapi')
-rw-r--r-- | source3/lib/netapi/cm.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source3/lib/netapi/cm.c b/source3/lib/netapi/cm.c index dcbf9a0457..0e059edb29 100644 --- a/source3/lib/netapi/cm.c +++ b/source3/lib/netapi/cm.c @@ -57,7 +57,8 @@ static WERROR libnetapi_open_ipc_connection(struct libnetapi_ctx *ctx, cli_ipc = cli_cm_open(ctx, NULL, server_name, "IPC$", false, false, - PROTOCOL_NT1); + PROTOCOL_NT1, + 0, 0x20); if (!cli_ipc) { libnetapi_set_error_string(ctx, "Failed to connect to IPC$ share on %s", server_name); |