diff options
author | Andrew Bartlett <abartlet@samba.org> | 2004-05-16 21:30:48 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:53:48 -0500 |
commit | 92dd542aa01f2c3b64ca104696c731919f4d7ec7 (patch) | |
tree | 1a1e2489c32f2b8c6b4eec31a7f8dc019ebda2ed /source4/rpc_server/samr/dcesrv_samr.c | |
parent | 8b84f643bd50c83230b723eb35b0edafe5670fca (diff) | |
download | samba-92dd542aa01f2c3b64ca104696c731919f4d7ec7.tar.gz samba-92dd542aa01f2c3b64ca104696c731919f4d7ec7.tar.bz2 samba-92dd542aa01f2c3b64ca104696c731919f4d7ec7.zip |
r754: Implement the SetPassword operation on the netlogon pipe.
This involves allowing the password set code in samdb to take an
already hashed password, and some fixes to our torture code.
Andrew Bartlett
(This used to be commit f9f581b5804a20785df06cde157b23c952edc2ce)
Diffstat (limited to 'source4/rpc_server/samr/dcesrv_samr.c')
-rw-r--r-- | source4/rpc_server/samr/dcesrv_samr.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/source4/rpc_server/samr/dcesrv_samr.c b/source4/rpc_server/samr/dcesrv_samr.c index 847b30e71c..62be2cd262 100644 --- a/source4/rpc_server/samr/dcesrv_samr.c +++ b/source4/rpc_server/samr/dcesrv_samr.c @@ -1687,7 +1687,9 @@ static NTSTATUS samr_set_password(struct dcesrv_call_state *dce_call, so the domain password policy can be used */ return samdb_set_password(a_state->sam_ctx, mem_ctx, a_state->account_dn, a_state->domain_state->domain_dn, - msg, new_pass, False /* This is a password set, not change */); + msg, new_pass, + NULL, NULL, + False /* This is a password set, not change */); } /* |