File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -32,6 +32,9 @@ PHP NEWS
32
32
. Fixed bug #81226 (Integer overflow behavior is different with JIT
33
33
enabled). (Dmitry)
34
34
35
+ - OpenSSL:
36
+ . Fixed bug #81327 (Error build openssl extension on php 7.4.22). (cmb)
37
+
35
38
- PDO_ODBC:
36
39
. Fixed bug #81252 (PDO_ODBC doesn't account for SQL_NO_TOTAL). (cmb)
37
40
Original file line number Diff line number Diff line change @@ -3236,7 +3236,7 @@ PHP_FUNCTION(openssl_csr_sign)
3236
3236
goto cleanup ;
3237
3237
}
3238
3238
3239
- #if PHP_OPENSSL_API_VERSION >= 0x10100
3239
+ #if PHP_OPENSSL_API_VERSION >= 0x10100 && !defined ( LIBRESSL_VERSION_NUMBER )
3240
3240
ASN1_INTEGER_set_int64 (X509_get_serialNumber (new_cert ), serial );
3241
3241
#else
3242
3242
ASN1_INTEGER_set (X509_get_serialNumber (new_cert ), serial );
You can’t perform that action at this time.
0 commit comments