diff options
author | Stefan Metzmacher <metze@samba.org> | 2017-03-21 08:31:29 +0100 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2017-03-24 11:57:10 +0100 |
commit | 5bba164d15699fff9523424cf72de04221b736a2 (patch) | |
tree | 4c46cc319b3a5e53e6998e045f76c5e5aa708424 /source3 | |
parent | a363a7936cefd76d923c1106677ddc5c322e3bc5 (diff) | |
download | samba-5bba164d15699fff9523424cf72de04221b736a2.tar.gz |
winbindd: no longer use USER_INFO_LOCAL_SAM_ONLY
make_auth3_context_for_winbind() restricts the used auth backends now.
BUG: https://bugzilla.samba.org/show_bug.cgi?id=2976
Signed-off-by: Stefan Metzmacher <metze@samba.org>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
Diffstat (limited to 'source3')
-rw-r--r-- | source3/winbindd/winbindd_pam.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/winbindd/winbindd_pam.c b/source3/winbindd/winbindd_pam.c index 74941c70115..c04367e02bc 100644 --- a/source3/winbindd/winbindd_pam.c +++ b/source3/winbindd/winbindd_pam.c @@ -1269,7 +1269,7 @@ static NTSTATUS winbindd_dual_auth_passdb(TALLOC_CTX *mem_ctx, user_info->mapped_state = True; /* We don't want to come back to winbindd or to do PAM account checks */ - user_info->flags |= USER_INFO_LOCAL_SAM_ONLY | USER_INFO_INFO3_AND_NO_AUTHZ; + user_info->flags |= USER_INFO_INFO3_AND_NO_AUTHZ; if (interactive) { user_info->flags |= USER_INFO_INTERACTIVE_LOGON; |