diff options
author | Jeremy Allison <jra@samba.org> | 1998-05-05 19:24:32 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 1998-05-05 19:24:32 +0000 |
commit | 19f76f391b97b405879fd8574e711a6d59e4e60c (patch) | |
tree | 306956cdaf7e11d9b5733c77ddb317e1c27c6639 /source3/param/loadparm.c | |
parent | a5cab2bd8a29fd3d855948cc1fef5c119e29b3cf (diff) | |
download | samba-19f76f391b97b405879fd8574e711a6d59e4e60c.tar.gz samba-19f76f391b97b405879fd8574e711a6d59e4e60c.tar.bz2 samba-19f76f391b97b405879fd8574e711a6d59e4e60c.zip |
genrand.c: SGI compile warning fix.
ipc.c: Fix for duplicate printer names being long.
loadparm.c: Set bNetWkstaUserLogon to false by default - new code in password.c
protects us.
nmbd_logonnames.c:
nmbd_namequery.c:
nmbd_namerelease.c: Debug messages fix.
password.c: SGI compile warning fix, fix for tcon() with bNetWkstaUserLogon call.
reply.c: SGI compile warning fix.
server.c Debug messages fix.
smbpass.c: Fix for incorrect pointer.
Jeremy.
(This used to be commit 567d3f838988cafab4770fce1cf68b73085e6c71)
Diffstat (limited to 'source3/param/loadparm.c')
-rw-r--r-- | source3/param/loadparm.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source3/param/loadparm.c b/source3/param/loadparm.c index e4d27f1f64..cbb17adc95 100644 --- a/source3/param/loadparm.c +++ b/source3/param/loadparm.c @@ -755,7 +755,8 @@ static void init_globals(void) Globals.client_code_page = DEFAULT_CLIENT_CODE_PAGE; Globals.bTimeServer = False; Globals.bBindInterfacesOnly = False; - Globals.bNetWkstaUserLogon = True; + Globals.bNetWkstaUserLogon = False; /* This is now set to false by default as + the code in password.c protects us from this bug. */ Globals.bUnixPasswdSync = False; Globals.bPasswdChatDebug = False; |