From: Gerald Carter Date: Sun, 6 May 2007 21:23:40 +0000 (+0000) Subject: r22719: Missed change for one-way trust support. Ignore password policy X-Git-Tag: samba-4.0.0alpha6~801^2~5951 X-Git-Url: http://git.samba.org/samba.git/?a=commitdiff_plain;h=cf4f314fb3b303f324c51b145d64083a12c1e1e1;p=ira%2Fwip.git r22719: Missed change for one-way trust support. Ignore password policy settings from one trusted domain with no incoming trust path. Guenther, I think this is ok as we only need the pw policy to give feedback on upcoming expiration times. (This used to be commit c79ae57388d087496777129d6936cd51aab38d5b) --- diff --git a/source3/nsswitch/winbindd_pam.c b/source3/nsswitch/winbindd_pam.c index 66ac61e5c9d..6eb587f0ee4 100644 --- a/source3/nsswitch/winbindd_pam.c +++ b/source3/nsswitch/winbindd_pam.c @@ -1534,11 +1534,15 @@ process_result: result = fillup_password_policy(domain, state); - if (!NT_STATUS_IS_OK(result)) { + if (!NT_STATUS_IS_OK(result) + && !NT_STATUS_EQUAL(result, NT_STATUS_NOT_SUPPORTED) ) + { DEBUG(10,("Failed to get password policies: %s\n", nt_errstr(result))); goto done; } + result = NT_STATUS_OK; + if (state->request.flags & WBFLAG_PAM_UNIX_NAME) { /* We've been asked to return the unix username, per 'winbind use default domain' settings and the like */