diff options
author | Andrew Bartlett <abartlet@samba.org> | 2014-06-30 12:04:03 +1200 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2014-07-04 02:52:35 +0200 |
commit | 0b77cd969c54e4efa6faff507834c183958ec23c (patch) | |
tree | 7615b93b7e97793cdb6533f5ea311de40e989285 /auth | |
parent | 5d069a04fc843512b6a703691d81c4c1d28ef744 (diff) | |
download | samba-0b77cd969c54e4efa6faff507834c183958ec23c.tar.gz |
s4-auth: Do not override the NT_STATUS_NOT_IMPLEMENTED error for winbindd
This changes the auth code in winbindd to use this as a flag, and to
therefore contact the RW DC.
Change-Id: If4164d27b57b453b398642fdf7d46d03cd0e65f2
Signed-off-by: Andrew Bartlett <abartlet@samba.org>
Reviewed-by: Nadezhda Ivanova <nivanova@samba.org>
Diffstat (limited to 'auth')
-rw-r--r-- | auth/common_auth.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/auth/common_auth.h b/auth/common_auth.h index d9bde018bf3..d1a775d431a 100644 --- a/auth/common_auth.h +++ b/auth/common_auth.h @@ -26,7 +26,7 @@ #define USER_INFO_CASE_INSENSITIVE_PASSWORD 0x02 /* password may be in any case */ #define USER_INFO_DONT_CHECK_UNIX_ACCOUNT 0x04 /* don't check unix account status */ #define USER_INFO_INTERACTIVE_LOGON 0x08 /* Interactive logon */ -#define USER_INFO_LOCAL_SAM_ONLY 0x10 /* Only authenticate against the local SAM */ +#define USER_INFO_LOCAL_SAM_ONLY 0x10 /* Only authenticate against the local SAM, do not map missing passwords to NO_SUCH_USER */ #define USER_INFO_INFO3_AND_NO_AUTHZ 0x20 /* Only fill in server_info->info3 and do not do any authorization steps */ enum auth_password_state { |