Skip to content

Commit 4ce6491

Browse files
committed
Fix [-Wundef] warning in OpenSSL extension
1 parent 8429a91 commit 4ce6491

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ext/openssl/openssl.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -589,7 +589,7 @@ static time_t php_openssl_asn1_time_to_time_t(ASN1_UTCTIME * timestr) /* {{{ */
589589
thetime.tm_isdst = -1;
590590
ret = mktime(&thetime);
591591

592-
#if HAVE_STRUCT_TM_TM_GMTOFF
592+
#ifdef HAVE_STRUCT_TM_TM_GMTOFF
593593
gmadjust = thetime.tm_gmtoff;
594594
#else
595595
/*

0 commit comments

Comments
 (0)