From ae06064e4d77d10b82c6061427dcc01d942b1dd8 Mon Sep 17 00:00:00 2001 From: default Date: Tue, 4 Oct 2022 18:46:12 +0200 Subject: New command-line option purge. --- xs_time.h | 1 + 1 file changed, 1 insertion(+) (limited to 'xs_time.h') diff --git a/xs_time.h b/xs_time.h index ce44cdc..979bde4 100644 --- a/xs_time.h +++ b/xs_time.h @@ -46,6 +46,7 @@ time_t xs_parse_time(const char *str, const char *fmt, int local) memset(&tm, '\0', sizeof(tm)); strptime(str, fmt, &tm); + /* try to guess the Daylight Saving Time */ if (local) tm.tm_isdst = -1; -- cgit