diff options
author | Gerald Carter <jerry@samba.org> | 2000-11-14 13:48:53 +0000 |
---|---|---|
committer | Gerald Carter <jerry@samba.org> | 2000-11-14 13:48:53 +0000 |
commit | 683ee2748d9dffa86936fd16fcc2673a2975e940 (patch) | |
tree | fb0077ac98ecd2ea6ce28581b2ef80d989227f9d | |
parent | 91421030d505c1db7bfa3d769c94914226ada364 (diff) | |
download | samba-683ee2748d9dffa86936fd16fcc2673a2975e940.tar.gz samba-683ee2748d9dffa86936fd16fcc2673a2975e940.tar.xz samba-683ee2748d9dffa86936fd16fcc2673a2975e940.zip |
set default for 'debug timestamp' in 2.2 to be true. Better choice
for a production release. The default is still no in HEAD and should
stay that way in development branches probably.
-- jerry
-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 43b0c62f17b..c7c47f0ca15 100644 --- a/source/param/loadparm.c +++ b/source/param/loadparm.c @@ -1196,7 +1196,7 @@ static void init_globals(void) Globals.bStripDot = False; Globals.syslog = 1; Globals.bSyslogOnly = False; - Globals.bTimestampLogs = False; + Globals.bTimestampLogs = True; Globals.bDebugHiresTimestamp = False; Globals.bDebugPid = False; Globals.bDebugUid = False; |