From: Marcus Boerger Date: Thu, 12 Dec 2002 12:18:44 +0000 (+0000) Subject: typeconversion is needed here for cygwin X-Git-Tag: RELEASE_1_0b3~24 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=835c4dedbb0e95912484cd48c1e8d26879997ffe;p=php typeconversion is needed here for cygwin --- diff --git a/ext/openssl/openssl.c b/ext/openssl/openssl.c index 1c44e00afc..44a4bc80ea 100644 --- a/ext/openssl/openssl.c +++ b/ext/openssl/openssl.c @@ -298,7 +298,7 @@ static time_t asn1_time_to_time_t(ASN1_UTCTIME * timestr TSRMLS_DC) ** the value of timezone - 3600 seconds. Otherwise, we need to overcorrect and ** set the adjustment to the main timezone + 3600 seconds. */ - gmadjust = -(thetime.tm_isdst ? timezone - 3600 : timezone + 3600); + gmadjust = -(thetime.tm_isdst ? (long)timezone - 3600 : (long)timezone + 3600); #endif ret += gmadjust;