1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-26 10:04:02 +03:00

s3: Allow pdb password change using WINBINDD_PAM_CHNG_PSWD_AUTH_CRAP

This commit is contained in:
Volker Lendecke 2010-04-23 19:44:05 +02:00
parent f43d1827f3
commit 7099a3c446

View File

@ -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,