1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-12 09:18:10 +03:00

Update for new pdb_set_plaintext_passwd() interface.

(This used to be commit ce676f8bfc)
This commit is contained in:
Andrew Bartlett 2001-09-26 11:55:13 +00:00
parent d74d82bddc
commit c907f33396

View File

@ -870,13 +870,8 @@ BOOL change_oem_password(SAM_ACCOUNT *hnd, char *new_passwd,
BOOL override)
{
int ret;
uchar new_nt_p16[16];
uchar new_p16[16];
nt_lm_owf_gen(new_passwd, new_nt_p16, new_p16);
pdb_set_lanman_passwd (hnd, new_p16);
pdb_set_nt_passwd (hnd, new_nt_p16);
pdb_set_plaintext_passwd (hnd, new_passwd);
/* Now write it into the file. */
become_root();