[SCM] Samba Shared Repository - branch v3-3-test updated - release-3-2-0pre2-4449-gc9f57fa

Günther Deschner gd at samba.org
Wed Nov 19 20:42:33 GMT 2008


The branch, v3-3-test has been updated
       via  c9f57fa84a33572b4888dd01688760eb34971a51 (commit)
      from  0c4d1d187bb93e65c7de38071cf54e8554b150b9 (commit)

http://gitweb.samba.org/?p=samba.git;a=shortlog;h=v3-3-test


- Log -----------------------------------------------------------------
commit c9f57fa84a33572b4888dd01688760eb34971a51
Author: Günther Deschner <gd at samba.org>
Date:   Thu Nov 13 17:19:11 2008 +0100

    s3-winbindd: workaround for samr_ChangePasswordUser3 to User2 fallback for w2k dcs.
    
    Guenther

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

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


Changeset truncated at 500 lines:

diff --git a/source/winbindd/winbindd_pam.c b/source/winbindd/winbindd_pam.c
index 2fd9352..b37851c 100644
--- a/source/winbindd/winbindd_pam.c
+++ b/source/winbindd/winbindd_pam.c
@@ -2117,9 +2117,15 @@ enum winbindd_result winbindd_dual_pam_chauthtok(struct winbindd_domain *contact
 		got_info = true;
 	}
 
+	/* atm the pidl generated rpccli_samr_ChangePasswordUser3 function will
+	 * return with NT_STATUS_BUFFER_TOO_SMALL for w2k dcs as w2k just
+	 * returns with 4byte error code (NT_STATUS_NOT_SUPPORTED) which is too
+	 * short to comply with the samr_ChangePasswordUser3 idl - gd */
+
 	/* only fallback when the chgpasswd_user3 call is not supported */
 	if ((NT_STATUS_EQUAL(result, NT_STATUS(DCERPC_FAULT_OP_RNG_ERROR))) ||
 		   (NT_STATUS_EQUAL(result, NT_STATUS_NOT_SUPPORTED)) ||
+		   (NT_STATUS_EQUAL(result, NT_STATUS_BUFFER_TOO_SMALL)) ||
 		   (NT_STATUS_EQUAL(result, NT_STATUS_NOT_IMPLEMENTED))) {
 
 		DEBUG(10,("Password change with chgpasswd_user3 failed with: %s, retrying chgpasswd_user2\n",


-- 
Samba Shared Repository


More information about the samba-cvs mailing list