From 835c4dedbb0e95912484cd48c1e8d26879997ffe Mon Sep 17 00:00:00 2001 From: Marcus Boerger Date: Thu, 12 Dec 2002 12:18:44 +0000 Subject: [PATCH] typeconversion is needed here for cygwin --- ext/openssl/openssl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.50.1