diff --git a/libisofs/util.c b/libisofs/util.c index 786e19b..377f974 100644 --- a/libisofs/util.c +++ b/libisofs/util.c @@ -1821,6 +1821,7 @@ time_t iso_datetime_read_17(const uint8_t *buf) sscanf((char*)&buf[12], "%2d", &tm.tm_sec); tm.tm_year -= 1900; tm.tm_mon -= 1; + tm.tm_isdst = 0; return timegm(&tm) - ((int8_t)buf[6]) * 60 * 15; }