Skip to content

Commit fb8f8d4

Browse files
committed
Correct openssl test script condition
1 parent 1a476d0 commit fb8f8d4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/globals/ext-tests/openssl.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,6 @@
3131
}
3232
assert($valid);
3333
}
34-
if (PHP_VERSION_ID >= 80500 && defined('OPENSSL_VERSION_NUMBER') && OPENSSL_VERSION_NUMBER >= 0x30200000) {
34+
if (PHP_VERSION_ID >= 80500 && !PHP_ZTS && defined('OPENSSL_VERSION_NUMBER') && OPENSSL_VERSION_NUMBER >= 0x30200000) {
3535
assert(function_exists('openssl_password_hash'));
3636
}

0 commit comments

Comments
 (0)