diff options
author | Andrew Bartlett <abartlet@samba.org> | 2003-03-18 09:52:55 +0000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2003-03-18 09:52:55 +0000 |
commit | cdc6fc8acb24645ccd0f2862741c9ea9e1c02829 (patch) | |
tree | 95656003f6e226490d9605f69190dad8022e2dab /source3/auth | |
parent | 50eea935161f0c2b5122d9bea5c95eced0a3c485 (diff) | |
download | samba-cdc6fc8acb24645ccd0f2862741c9ea9e1c02829.tar.gz samba-cdc6fc8acb24645ccd0f2862741c9ea9e1c02829.tar.bz2 samba-cdc6fc8acb24645ccd0f2862741c9ea9e1c02829.zip |
Add an extra parameter to our 'set_remote_machine_name' and
'set_local_machine_name' so that the client can't change it from under us.
(.NET RC2 and WinXP install calls the machine 'machinename' during NTLMSSP
on the domain join).
Andrew Bartlett
(This used to be commit 4c7163e7c2cc09bd95faa05156ee480957a7a4d8)
Diffstat (limited to 'source3/auth')
-rw-r--r-- | source3/auth/auth_ntlmssp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/auth/auth_ntlmssp.c b/source3/auth/auth_ntlmssp.c index d32d248296..a381219d74 100644 --- a/source3/auth/auth_ntlmssp.c +++ b/source3/auth/auth_ntlmssp.c @@ -50,7 +50,7 @@ static NTSTATUS auth_ntlmssp_check_password(struct ntlmssp_state *ntlmssp_state) /* the client has given us its machine name (which we otherwise would not get on port 445). we need to possibly reload smb.conf if smb.conf includes depend on the machine name */ - set_remote_machine_name(auth_ntlmssp_state->ntlmssp_state->workstation); + set_remote_machine_name(auth_ntlmssp_state->ntlmssp_state->workstation, True); /* setup the string used by %U */ /* sub_set_smb_name checks for weird internally */ |