From db9d6374a312ba5acb89d80bb41dbd5fdc8d0b17 Mon Sep 17 00:00:00 2001 From: Jim McDonough Date: Mon, 17 Dec 2001 18:53:57 +0000 Subject: make sure we pass the lm and nt data in the right order. They were swapped, and somehow this worked when both were provided, but not when only one was. (This used to be commit 477309b1e653761b291daa4693976d341880beab) --- source3/auth/auth_util.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source3/auth/auth_util.c') diff --git a/source3/auth/auth_util.c b/source3/auth/auth_util.c index 04b3cbbecf..60495ad23b 100644 --- a/source3/auth/auth_util.c +++ b/source3/auth/auth_util.c @@ -412,8 +412,8 @@ BOOL make_user_info_winbind(auth_usersupplied_info **user_info, username, username, domain, domain, global_myname, - local_nt_blob, local_lm_blob, + local_nt_blob, plaintext_blob, ntlmssp_flags, False); @@ -450,7 +450,7 @@ BOOL make_user_info_winbind_crap(auth_usersupplied_info **user_info, smb_name, smb_name, client_domain, client_domain, global_myname, - nt_blob, lm_blob, + lm_blob, nt_blob, plaintext_blob, ntlmssp_flags, True); -- cgit