diff options
author | Stefan Metzmacher <metze@samba.org> | 2009-12-30 14:13:45 +0100 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2010-03-24 17:34:55 +0100 |
commit | 7d977da92554c34539a475feb7dcb0a6dc0ad654 (patch) | |
tree | b72b62b56382fa3e001890c7f98726c7458f3b26 /source3/rpc_client | |
parent | 55279dfbe3770563016723c3ba7d1dbbec3d4437 (diff) | |
download | samba-7d977da92554c34539a475feb7dcb0a6dc0ad654.tar.gz samba-7d977da92554c34539a475feb7dcb0a6dc0ad654.tar.bz2 samba-7d977da92554c34539a475feb7dcb0a6dc0ad654.zip |
s3:ntlmssp: pass names and use_ntlmv2 to ntlmssp_client_start() and store them
Inspired by the NTLMSSP merge work by Andrew Bartlett.
metze
Signed-off-by: Günther Deschner <gd@samba.org>
Diffstat (limited to 'source3/rpc_client')
-rw-r--r-- | source3/rpc_client/cli_pipe.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/source3/rpc_client/cli_pipe.c b/source3/rpc_client/cli_pipe.c index 2f7db99f20..af1ebd6f41 100644 --- a/source3/rpc_client/cli_pipe.c +++ b/source3/rpc_client/cli_pipe.c @@ -3167,7 +3167,11 @@ static NTSTATUS rpccli_ntlmssp_bind_data(TALLOC_CTX *mem_ctx, goto fail; } - status = ntlmssp_client_start(&result->a_u.ntlmssp_state); + status = ntlmssp_client_start(NULL, + global_myname(), + lp_workgroup(), + lp_client_ntlmv2_auth(), + &result->a_u.ntlmssp_state); if (!NT_STATUS_IS_OK(status)) { goto fail; } |