mscan: adaptive iso date

pull/2/head
Christian Neukirchen 8 years ago
parent e97bf25a4e
commit 59c00003f6

@ -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)

Loading…
Cancel
Save