From ca2a5693bf85ccfe5abe540e3a725945b52e8039 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Wed, 30 Dec 2009 14:53:08 +0100 Subject: s3:ntlmssp: rename void *auth_context; into void *callback_private; MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit metze Signed-off-by: Günther Deschner --- source3/include/ntlmssp.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'source3/include/ntlmssp.h') 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. -- cgit