mirror of
https://github.com/samba-team/samba.git
synced 2025-08-03 04:22:09 +03:00
Changed the order of arguments in make_oem_passwd_hash(). All the other
encryption functions have outputs as the last arguments.
(This used to be commit fb60798a77
)
This commit is contained in:
@ -329,7 +329,7 @@ BOOL cli_oem_change_password(struct cli_state *cli, const char *user, const char
|
||||
|
||||
clistr_push(cli, dos_new_password, new_password, -1, STR_TERMINATE);
|
||||
|
||||
if (!make_oem_passwd_hash( data, dos_new_password, old_pw_hash, False))
|
||||
if (!make_oem_passwd_hash(dos_new_password, old_pw_hash, False, data))
|
||||
return False;
|
||||
|
||||
/*
|
||||
|
Reference in New Issue
Block a user