summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2003-04-07 23:45:22 +0000
committerAndrew Bartlett <abartlet@samba.org>2003-04-07 23:45:22 +0000
commit38ec539cf5afeed3fe75f82e9aecbab7dc7f46ec (patch)
tree77b90ecd81a9013874df78020fd8ef68f0b70b99
parent1d247da97a46693f3f4c8eceef03f685de5074df (diff)
downloadsamba-38ec539cf5afeed3fe75f82e9aecbab7dc7f46ec.tar.gz
samba-38ec539cf5afeed3fe75f82e9aecbab7dc7f46ec.tar.bz2
samba-38ec539cf5afeed3fe75f82e9aecbab7dc7f46ec.zip
We never actually got an 'ads' auth module, so don't send the auth subsystem
off on a wild probing spree looking for it. Andrew Bartlett (This used to be commit 7c7c5594b3dfd460d09bccd409ccbf64c6b42338)
-rw-r--r--source3/auth/auth.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/auth/auth.c b/source3/auth/auth.c
index f9df255595..71e9ab0428 100644
--- a/source3/auth/auth.c
+++ b/source3/auth/auth.c
@@ -443,7 +443,7 @@ NTSTATUS make_auth_context_subsystem(struct auth_context **auth_context)
break;
case SEC_ADS:
DEBUG(5,("Making default auth method list for security=ADS\n"));
- auth_method_list = str_list_make("guest sam ads winbind ntdomain", NULL);
+ auth_method_list = str_list_make("guest sam winbind ntdomain", NULL);
break;
default:
DEBUG(5,("Unknown auth method!\n"));