From 7099a3c446aa7a4de42c7cffa9b409f319f0ec76 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Fri, 23 Apr 2010 19:44:05 +0200 Subject: s3: Allow pdb password change using WINBINDD_PAM_CHNG_PSWD_AUTH_CRAP --- source3/winbindd/winbindd_pam.c | 15 +++++++++++++++ 1 file changed, 15 insertions(+) (limited to 'source3/winbindd/winbindd_pam.c') diff --git a/source3/winbindd/winbindd_pam.c b/source3/winbindd/winbindd_pam.c index 334187ca7b..aea2a2a34f 100644 --- a/source3/winbindd/winbindd_pam.c +++ b/source3/winbindd/winbindd_pam.c @@ -2185,6 +2185,21 @@ enum winbindd_result winbindd_dual_pam_chng_pswd_auth_crap(struct winbindd_domai DEBUG(3, ("[%5lu]: pam auth crap domain: %s user: %s\n", (unsigned long)state->pid, domain, user)); + if (strequal(domain, get_global_sam_name())) { + enum samPwdChangeReason reject_reason; + + result = pass_oem_change( + user, + state->request->data.chng_pswd_auth_crap.new_lm_pswd, + state->request->data.chng_pswd_auth_crap.old_lm_hash_enc, + state->request->data.chng_pswd_auth_crap.new_nt_pswd, + state->request->data.chng_pswd_auth_crap.old_nt_hash_enc, + &reject_reason); + DEBUG(10, ("pass_oem_change returned %s\n", + nt_errstr(result))); + goto done; + } + /* Change password */ new_nt_password = data_blob_const( state->request->data.chng_pswd_auth_crap.new_nt_pswd, -- cgit