diff options
author | Andrew Bartlett <abartlet@samba.org> | 2004-11-10 10:58:15 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:05:42 -0500 |
commit | 5805c780dc6d78c2cc4a86d07155db807a80bac7 (patch) | |
tree | 54101126806edf9f1fa3fe8df8c0f891c4d89688 /source4/libcli/auth | |
parent | cb700e90c22d9e301a05142699df7b64402a08d8 (diff) | |
download | samba-5805c780dc6d78c2cc4a86d07155db807a80bac7.tar.gz samba-5805c780dc6d78c2cc4a86d07155db807a80bac7.tar.bz2 samba-5805c780dc6d78c2cc4a86d07155db807a80bac7.zip |
r3655: As required by the new torture test, add the LM session key output
parameter to SMBNTLMv2encrypt().
Andrew Bartlett
(This used to be commit 75ff351faf0a3231e17f000b006beb9cb545d905)
Diffstat (limited to 'source4/libcli/auth')
-rw-r--r-- | source4/libcli/auth/ntlmssp.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source4/libcli/auth/ntlmssp.c b/source4/libcli/auth/ntlmssp.c index 55a80d0d5e..f0003279e5 100644 --- a/source4/libcli/auth/ntlmssp.c +++ b/source4/libcli/auth/ntlmssp.c @@ -1104,7 +1104,8 @@ static NTSTATUS ntlmssp_client_challenge(struct ntlmssp_state *ntlmssp_state, ntlmssp_state->domain, ntlmssp_state->password, &challenge_blob, &struct_blob, - &lm_response, &nt_response, &session_key)) { + &lm_response, &nt_response, + NULL, &session_key)) { data_blob_free(&challenge_blob); data_blob_free(&struct_blob); return NT_STATUS_NO_MEMORY; |