summaryrefslogtreecommitdiff
path: root/source3/auth
diff options
context:
space:
mode:
authorJim McDonough <jmcd@samba.org>2001-12-17 18:53:57 +0000
committerJim McDonough <jmcd@samba.org>2001-12-17 18:53:57 +0000
commitdb9d6374a312ba5acb89d80bb41dbd5fdc8d0b17 (patch)
tree68411234cc3cb1da9c0adfa61d006997849c0b04 /source3/auth
parent9a5e1c59ea3585a20db71e116b47251c93c894ac (diff)
downloadsamba-db9d6374a312ba5acb89d80bb41dbd5fdc8d0b17.tar.gz
samba-db9d6374a312ba5acb89d80bb41dbd5fdc8d0b17.tar.bz2
samba-db9d6374a312ba5acb89d80bb41dbd5fdc8d0b17.zip
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)
Diffstat (limited to 'source3/auth')
-rw-r--r--source3/auth/auth_util.c4
1 files changed, 2 insertions, 2 deletions
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);