diff options
author | Volker Lendecke <vl@samba.org> | 2009-02-19 23:41:48 +0100 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2009-02-21 14:04:14 +0100 |
commit | 4aed9abbf84deb47e7a3aec025268a3c1e6b29bb (patch) | |
tree | d11cd47acd6bcf3617fd2075c02ebed8ef653146 /source3/include/ntlmssp.h | |
parent | e9467ff26ed429dbb2d4249da5bedf545664253b (diff) | |
download | samba-4aed9abbf84deb47e7a3aec025268a3c1e6b29bb.tar.gz samba-4aed9abbf84deb47e7a3aec025268a3c1e6b29bb.tar.bz2 samba-4aed9abbf84deb47e7a3aec025268a3c1e6b29bb.zip |
Remove the static "chal" from ntlmssp.c:get_challenge()
Diffstat (limited to 'source3/include/ntlmssp.h')
-rw-r--r-- | source3/include/ntlmssp.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source3/include/ntlmssp.h b/source3/include/ntlmssp.h index 55b9249ea7..f3414fe928 100644 --- a/source3/include/ntlmssp.h +++ b/source3/include/ntlmssp.h @@ -109,7 +109,8 @@ typedef struct ntlmssp_state * @return 8 bytes of challnege data, determined by the server to be the challenge for NTLM authentication * */ - const uint8 *(*get_challenge)(const struct ntlmssp_state *ntlmssp_state); + void (*get_challenge)(const struct ntlmssp_state *ntlmssp_state, + uint8_t challenge[8]); /** * Callback to find if the challenge used by NTLM authentication may be modified |