summary refs log tree commit diff stats
path: root/src
diff options
context:
space:
mode:
authorBerke Viktor <bviktor@hexchat.org>2012-10-04 22:12:14 +0200
committerBerke Viktor <bviktor@hexchat.org>2012-10-04 22:12:14 +0200
commit02fd5a2aff17d7ac8c984b0db8586cd6948309cf (patch)
tree128bae33cf7c4f70a2b6b837f3dc659a6b3128d8 /src
parent24de2899eccc64dd5531074ed7fc59a853809478 (diff)
Enable timestamps by default and change default format to include seconds
Diffstat (limited to 'src')
-rw-r--r--src/common/cfgfiles.c3
-rw-r--r--src/common/text.c2
2 files changed, 3 insertions, 2 deletions
diff --git a/src/common/cfgfiles.c b/src/common/cfgfiles.c
index 4485b426..8c074b4b 100644
--- a/src/common/cfgfiles.c
+++ b/src/common/cfgfiles.c
@@ -746,11 +746,12 @@ load_config (void)
 	prefs.url_grabber = 1;
 	prefs.url_grabber_limit = 100; /* 0 means unlimited */
 	prefs.text_search_follow = 1;
+	prefs.timestamp = 1;
 #ifdef WIN32
 	prefs.identd = 1;
 #endif
 	strcpy (prefs.spell_langs, g_getenv ("LC_ALL") ? g_getenv ("LC_ALL") : "en_US");
-	strcpy (prefs.stamp_format, "[%H:%M] ");
+	strcpy (prefs.stamp_format, "[%H:%M:%S] ");
 	strcpy (prefs.timestamp_log_format, "%b %d %H:%M:%S ");
 	strcpy (prefs.logmask, "%n-%c.log");
 	strcpy (prefs.nick_suffix, ",");
diff --git a/src/common/text.c b/src/common/text.c
index 0e8cbc3a..29efab98 100644
--- a/src/common/text.c
+++ b/src/common/text.c
@@ -744,7 +744,7 @@ get_stamp_str (char *fmt, time_t tim, char **ret)
 	if (!len)
 	{
 		/* use failsafe format until a correct one is specified */
-		len = strftime (dest, sizeof (dest), "[%H:%M]", localtime (&tim));
+		len = strftime (dest, sizeof (dest), "[%H:%M:%S]", localtime (&tim));
 	}
 #endif
 	if (len)