From 50547a9950062311a4952846960b15e1d6cdfdf5 Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Fri, 3 Feb 2012 17:09:37 +1100 Subject: s3-auth: Follow auth_ntlmssp and use auth4_context for Session Setup This patch ensures consistency in behaviour between NTLMSSP and NTLM session setup handlers. By calling the same layer that auth_ntlmssp calls, we can not only allow redirection of all authentication to the AD DC, we ensure that map to guest and username map handling is consistent, even in the file server alone. Andrew Bartlett --- source3/smbd/globals.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3/smbd/globals.h') diff --git a/source3/smbd/globals.h b/source3/smbd/globals.h index bfa649b98b..5b65711b99 100644 --- a/source3/smbd/globals.h +++ b/source3/smbd/globals.h @@ -509,7 +509,7 @@ struct smbd_server_connection { struct { bool encrypted_passwords; bool spnego; - struct auth_context *auth_context; + struct auth4_context *auth_context; bool done; /* * Size of the data we can receive. Set by us. -- cgit