[SCM] Samba Shared Repository - branch master updated

Lars Müller lmuelle at samba.org
Wed Feb 17 11:11:49 MST 2010


The branch, master has been updated
       via  94074eb... s3: go straight to winbindd_dual_pam_auth() in case of !NT_STATUS_OK
      from  bc0b152... s3: let the pam_winbind po files reference the correct location

http://gitweb.samba.org/?p=samba.git;a=shortlog;h=master


- Log -----------------------------------------------------------------
commit 94074eb2e6d260e467ad3b6d354beeb282fe1ada
Author: Lars Müller <lars at samba.org>
Date:   Wed Feb 17 19:00:01 2010 +0100

    s3: go straight to winbindd_dual_pam_auth() in case of !NT_STATUS_OK
    
    At the formerly used process_result statement we have alone one
    NT_STATUS_IS_OK() which never could be hit in our case as we only go here
    if NT_STATUS_EQUAL is not ok.

-----------------------------------------------------------------------

Summary of changes:
 source3/winbindd/winbindd_pam.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)


Changeset truncated at 500 lines:

diff --git a/source3/winbindd/winbindd_pam.c b/source3/winbindd/winbindd_pam.c
index 4658231..86c7bbf 100644
--- a/source3/winbindd/winbindd_pam.c
+++ b/source3/winbindd/winbindd_pam.c
@@ -1549,7 +1549,7 @@ enum winbindd_result winbindd_dual_pam_auth(struct winbindd_domain *domain,
 		    NT_STATUS_EQUAL(result, NT_STATUS_PASSWORD_EXPIRED) ||
 		    NT_STATUS_EQUAL(result, NT_STATUS_PASSWORD_MUST_CHANGE) ||
 		    NT_STATUS_EQUAL(result, NT_STATUS_WRONG_PASSWORD)) {
-			goto process_result;
+			goto done;
 		}
 
 		if (state->request->flags & WBFLAG_PAM_FALLBACK_AFTER_KRB5) {


-- 
Samba Shared Repository


More information about the samba-cvs mailing list