From: Andrew Bartlett Date: Thu, 3 Jun 2010 11:18:45 +0000 (+1000) Subject: s4:s3compat Redirect all, including guest, authentication to Samba4 X-Git-Url: http://git.samba.org/?p=abartlet%2Fsamba.git%2F.git;a=commitdiff_plain;h=a7b8b757e789a8b290ec2dd4e4b1c0429d1e64d2 s4:s3compat Redirect all, including guest, authentication to Samba4 This creates a challenge around "NT AUTHORITY\ANONYMOUS" at the moment, but is the only correct thing to do, as we already do much the same thing with NTLMSSP. Andrew Barltett --- diff --git a/source4/s3compat/s3compat.c b/source4/s3compat/s3compat.c index 326eda23e66..dab1e6f0dd9 100644 --- a/source4/s3compat/s3compat.c +++ b/source4/s3compat/s3compat.c @@ -71,7 +71,7 @@ _PUBLIC_ void s3compat_smbd_process(void) NTSTATUS make_auth_context_subsystem(struct auth_context **auth_context) { - const char *auth_method_list[] = { "guest", "samba4", NULL }; + const char *auth_method_list[] = { "samba4", NULL }; return make_auth_context_text_list(auth_context, - auth_method_list); + auth_method_list); }