diff options
author | Stefan Metzmacher <metze@samba.org> | 2009-12-30 14:53:08 +0100 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2010-03-24 17:34:55 +0100 |
commit | ca2a5693bf85ccfe5abe540e3a725945b52e8039 (patch) | |
tree | 7d4838ec54d4595f9936634dfb41a32773811b7e /source3/include | |
parent | 7c42c5d8ffe87885f3ba96f1e0ba6ba69f1bab46 (diff) | |
download | samba-ca2a5693bf85ccfe5abe540e3a725945b52e8039.tar.gz samba-ca2a5693bf85ccfe5abe540e3a725945b52e8039.tar.bz2 samba-ca2a5693bf85ccfe5abe540e3a725945b52e8039.zip |
s3:ntlmssp: rename void *auth_context; into void *callback_private;
metze
Signed-off-by: Günther Deschner <gd@samba.org>
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/ntlmssp.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/source3/include/ntlmssp.h b/source3/include/ntlmssp.h index 4e99340f8a..3c924dd19b 100644 --- a/source3/include/ntlmssp.h +++ b/source3/include/ntlmssp.h @@ -78,7 +78,10 @@ struct ntlmssp_state uint32_t neg_flags; /* the current state of negotiation with the NTLMSSP partner */ - void *auth_context; + /** + * Private data for the callback functions + */ + void *callback_private; /** * Callback to get the 'challenge' used for NTLM authentication. |