summaryrefslogtreecommitdiff
path: root/source3/nmbd
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2016-10-25 11:31:07 +0200
committerAndreas Schneider <asn@cryptomilk.org>2016-11-15 11:00:26 +0100
commit482d3b35e99ab8c5b911fc3e863c1c35a500f791 (patch)
tree567fe50af25ce21706ee49e6e026b09c3514b5ce /source3/nmbd
parentd6d8893d56d0f7b6be7e9a8c34d454f4933525d5 (diff)
downloadsamba-482d3b35e99ab8c5b911fc3e863c1c35a500f791.tar.gz
s3:libsmb: let the callers only pass the password string to cli_session_setup[_send]()
There're no callers which tried to pass raw {lm,nt}_response any more. Signed-off-by: Stefan Metzmacher <metze@samba.org> Reviewed-by: Andreas Schneider <asn@samba.org>
Diffstat (limited to 'source3/nmbd')
-rw-r--r--source3/nmbd/nmbd_synclists.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/nmbd/nmbd_synclists.c b/source3/nmbd/nmbd_synclists.c
index 0135afc2f0a..bba1bc1ebec 100644
--- a/source3/nmbd/nmbd_synclists.c
+++ b/source3/nmbd/nmbd_synclists.c
@@ -95,7 +95,7 @@ static void sync_child(char *name, int nm_type,
return;
}
- if (!NT_STATUS_IS_OK(cli_session_setup(cli, "", "", 1, "", 0,
+ if (!NT_STATUS_IS_OK(cli_session_setup(cli, "", "",
workgroup))) {
cli_shutdown(cli);
return;