summaryrefslogtreecommitdiffstats
path: root/source/param
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>1998-05-07 19:04:14 +0000
committerJeremy Allison <jra@samba.org>1998-05-07 19:04:14 +0000
commit1fd8d12ca414066acec71b33eb8a13e16c2acd3a (patch)
treea178c1124afa017e51240063f6b9ef0cc06bc68a /source/param
parent57b01ad4ffb14ebd600d4e66602b54ed987f6106 (diff)
downloadsamba-1fd8d12ca414066acec71b33eb8a13e16c2acd3a.tar.gz
samba-1fd8d12ca414066acec71b33eb8a13e16c2acd3a.tar.xz
samba-1fd8d12ca414066acec71b33eb8a13e16c2acd3a.zip
This should (hopefully :-) be the final fix for the %U %G substitution
problem.... smbpass.c: Removed Luke's dire warning - as some of the functions in here *need* to be called externally :-). Jeremy.
Diffstat (limited to 'source/param')
-rw-r--r--source/param/loadparm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/param/loadparm.c b/source/param/loadparm.c
index 9ae845486a7..ddc5cf3ab15 100644
--- a/source/param/loadparm.c
+++ b/source/param/loadparm.c
@@ -754,8 +754,8 @@ static void init_globals(void)
Globals.syslog = 1;
Globals.bSyslogOnly = False;
Globals.os_level = 0;
- Globals.max_ttl = 60*60*4; /* 4 hours default */
- Globals.max_wins_ttl = 60*60*24*3; /* 3 days default */
+ Globals.max_ttl = 60*60*24*3; /* 3 days default */
+ Globals.max_wins_ttl = 60*60*24*6; /* 6 days default */
Globals.min_wins_ttl = 60*60*6; /* 6 hours default */
Globals.ReadSize = 16*1024;
Globals.lm_announce = 2; /* = Auto: send only if LM clients found */