summaryrefslogtreecommitdiff
path: root/src/file_list.c
diff options
context:
space:
mode:
authorChristian Pointner <equinox@helsinki.at>2011-04-28 14:46:29 (GMT)
committerChristian Pointner <equinox@helsinki.at>2011-04-28 14:46:29 (GMT)
commitb6a5098dd78431985ca50bb3b321fa0cf0ed1a98 (patch)
tree16b9e558ae93063d04816dc59cc628578a70505f /src/file_list.c
parentc5e2dc43e551e00c398a703becd7c4d0ff2a39cd (diff)
daylight savings info at boundary outputs
Diffstat (limited to 'src/file_list.c')
-rw-r--r--src/file_list.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/file_list.c b/src/file_list.c
index bced939..4d82db7 100644
--- a/src/file_list.c
+++ b/src/file_list.c
@@ -73,7 +73,7 @@ file_t* file_list_add(file_list_t* list, struct tm* time, const char* type, cons
if(!tmp)
return NULL;
- log_printf(INFO, "%s time: %02d:%02d:%02d on %d.%d.%d", type, time->tm_hour, time->tm_min, time->tm_sec, time->tm_mday, time->tm_mon+1, time->tm_year+1900);
+ log_printf(INFO, "%s time: %02d:%02d:%02d on %d.%d.%d%s", type, time->tm_hour, time->tm_min, time->tm_sec, time->tm_mday, time->tm_mon+1, time->tm_year+1900, time->tm_isdst > 0 ? " (DST)": "");
char name[256];
strftime(name, sizeof(name), format, time);