From c4495240f63c2bae164d4ef29ab9af2d3d87aec1 Mon Sep 17 00:00:00 2001 From: Tim Potter Date: Fri, 10 Aug 2001 04:59:05 +0000 Subject: 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 fb60798a771a7a2358d78e5cef97487addf930e7) --- source3/libsmb/clirap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3/libsmb/clirap.c') diff --git a/source3/libsmb/clirap.c b/source3/libsmb/clirap.c index c16fe2d08d..c649aedfba 100644 --- a/source3/libsmb/clirap.c +++ b/source3/libsmb/clirap.c @@ -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; /* -- cgit