about summary refs log tree commit diff
path: root/mscan.c
diff options
context:
space:
mode:
Diffstat (limited to 'mscan.c')
-rw-r--r--mscan.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/mscan.c b/mscan.c
index c84ec6f..48e20d0 100644
--- a/mscan.c
+++ b/mscan.c
@@ -114,6 +114,8 @@ fmt_date(struct message *msg, int w, int iso)
 
 			if (iso && w >= 19)
 				strftime(date, sizeof date, "%Y-%m-%d %H:%M:%S", tm);
+			else if (iso && w >= 16)
+				strftime(date, sizeof date, "%Y-%m-%d %H:%M", tm);
 			else if (iso || tm->tm_year != curyear)
 				strftime(date, sizeof date, "%Y-%m-%d", tm);
 			else if (tm->tm_yday != curyday)