diff options
author | Jeremy Allison <jra@samba.org> | 2001-01-30 00:35:58 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2001-01-30 00:35:58 +0000 |
commit | c229faef283106c1b10e92d6a458769cf48d3fb7 (patch) | |
tree | 1aab585d0034674feed2388ecba6f1357aba89e7 /source/param/loadparm.c | |
parent | 1a551be727575b9c2ba2e8186b5ec0ee351aed00 (diff) | |
download | samba-c229faef283106c1b10e92d6a458769cf48d3fb7.tar.gz samba-c229faef283106c1b10e92d6a458769cf48d3fb7.tar.xz samba-c229faef283106c1b10e92d6a458769cf48d3fb7.zip |
Fix inspited by Alan Romeril. 50% speedup in domain logins with this
change to default break response time of 10ms -> 0ms.
Jeremy.
Diffstat (limited to 'source/param/loadparm.c')
-rw-r--r-- | source/param/loadparm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/param/loadparm.c b/source/param/loadparm.c index f87d3a402f5..5a9cf0f2d54 100644 --- a/source/param/loadparm.c +++ b/source/param/loadparm.c @@ -1256,7 +1256,7 @@ static void init_globals(void) Globals.bRestrictAnonymous = False; Globals.map_to_guest = 0; /* By Default, "Never" */ Globals.min_passwd_length = MINPASSWDLENGTH; /* By Default, 5. */ - Globals.oplock_break_wait_time = 10; /* By Default, 10 msecs. */ + Globals.oplock_break_wait_time = 0; /* By Default, 0 msecs. */ #ifdef WITH_LDAP /* default values for ldap */ |