diff options
author | Andrew Bartlett <abartlet@samba.org> | 2003-03-08 10:22:50 +0000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2003-03-08 10:22:50 +0000 |
commit | 01289b14a7cbe0e1a1e135349037b0e7ba5fe70b (patch) | |
tree | f356a9b03834bc459ab5896eb185b7b10120f071 /source3/nmbd/nmbd.c | |
parent | bbf8961b284a877b5cfa4101e0fd677664a867f1 (diff) | |
download | samba-01289b14a7cbe0e1a1e135349037b0e7ba5fe70b.tar.gz samba-01289b14a7cbe0e1a1e135349037b0e7ba5fe70b.tar.bz2 samba-01289b14a7cbe0e1a1e135349037b0e7ba5fe70b.zip |
Make sure that the 'remote' machine name can only be set once. For some weird
reason, during a Win2003 installation, when you select 'domain join' it sends
one machine name in the name exchange, and litraly 'machinename' during the
NTLMSSP login.
Also fix up winbindd's logfile handling, so that it matches smbd and nmbd.
(This helps me, by seperating the logs by pid).
Andrew Bartlett
(This used to be commit afe5a3832f79131fb74461577f1db0e5e8bf4b6d)
Diffstat (limited to 'source3/nmbd/nmbd.c')
-rw-r--r-- | source3/nmbd/nmbd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/nmbd/nmbd.c b/source3/nmbd/nmbd.c index 2b7d8033a2..fc08645f1d 100644 --- a/source3/nmbd/nmbd.c +++ b/source3/nmbd/nmbd.c @@ -292,7 +292,7 @@ static BOOL reload_nmbd_services(BOOL test) { BOOL ret; - set_remote_machine_name("nmbd"); + set_remote_machine_name("nmbd", False); if ( lp_loaded() ) { pstring fname; |