X-Git-Url: http://git.sven.stormbind.net/?p=sven%2Fexfat-utils.git;a=blobdiff_plain;f=libexfat%2Ftime.c;h=93c1d67c9550d04bfd900e065c117ab5cb724401;hp=7d2becdae68871c756731e94471f71295a14d351;hb=refs%2Ftags%2Fupstream%2F1.2.5;hpb=62ddc92d38808bea3aba8fe70e3a417197e9d42f diff --git a/libexfat/time.c b/libexfat/time.c index 7d2becd..93c1d67 100644 --- a/libexfat/time.c +++ b/libexfat/time.c @@ -151,8 +151,14 @@ void exfat_unix2exfat(time_t unix_time, le16_t* date, le16_t* time, void exfat_tzset(void) { time_t now; + struct tm* utc; tzset(); now = time(NULL); - exfat_timezone = mktime(gmtime(&now)) - now; + utc = gmtime(&now); + /* gmtime() always sets tm_isdst to 0 because daylight savings never + affect UTC. Setting tm_isdst to -1 makes mktime() to determine whether + summer time is in effect. */ + utc->tm_isdst = -1; + exfat_timezone = mktime(utc) - now; }