diff options
author | Andrew Bartlett <abartlet@samba.org> | 2002-01-11 06:22:42 +0000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2002-01-11 06:22:42 +0000 |
commit | 7f8ae6e35c2733c0560d73266dc5d7c589b9a143 (patch) | |
tree | 847693499376287e05e947a7ab551be087574d61 | |
parent | da84e2a7568eac084ad04793d60523c63ec664c3 (diff) | |
download | samba-7f8ae6e35c2733c0560d73266dc5d7c589b9a143.tar.gz samba-7f8ae6e35c2733c0560d73266dc5d7c589b9a143.tar.bz2 samba-7f8ae6e35c2733c0560d73266dc5d7c589b9a143.zip |
The DC is meant to be sent the *unmapped* username...
Andrew Bartlett
(This used to be commit d7fca1806a304cb6eeecfe34d6c5c012c745114f)
-rw-r--r-- | source3/auth/auth_domain.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/auth/auth_domain.c b/source3/auth/auth_domain.c index e836375406..a81af3b738 100644 --- a/source3/auth/auth_domain.c +++ b/source3/auth/auth_domain.c @@ -276,7 +276,7 @@ static NTSTATUS domain_client_validate(TALLOC_CTX *mem_ctx, */ nt_status = cli_netlogon_sam_network_logon(cli, mem_ctx, - user_info->internal_username.str, user_info->domain.str, + user_info->smb_name.str, user_info->domain.str, user_info->wksta_name.str, chal, user_info->lm_resp, user_info->nt_resp, &info3); |