Fix asn1_get_time_t timezone offset

mktime takes an input in local time, but what we have is UTC.  timegm
does the right thing but is a nonstandard GNU and BSD extension, while
Windows has _mkgmtime.
This commit is contained in:
Julien Cristau 2023-02-08 15:58:24 +01:00 committed by Michał Trojnara
parent 27a2a2bfa3
commit c5ad70d31a

View File

@ -2095,7 +2095,11 @@ static time_t asn1_get_time_t(const ASN1_TIME *s)
return INVALID_TIME;
}
if (ASN1_TIME_to_tm(s, &tm)) {
return mktime(&tm);
#ifdef _WIN32
return _mkgmtime(&tm);
#else
return timegm(&tm);
#endif
} else {
return INVALID_TIME;
}