1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00

[skip ci] Fix Windows test for openssl-3.5 upgrade (#19384)

* Fix Windows test for openssl-3.5 upgrade

* Update ext/openssl/tests/check_default_conf_path.phpt

Co-authored-by: Christoph M. Becker <cmbecker69@gmx.de>
This commit is contained in:
Shivam Mathur
2025-08-06 16:11:38 +05:30
committed by Ilija Tovilo
parent b8ba8593b1
commit 94f2bb0dd5

View File

@@ -21,7 +21,7 @@ ob_end_clean();
preg_match(",Openssl default config [^ ]* (.*),", $info, $m);
if (isset($m[1])) {
var_dump(str_replace('/', '\\', strtolower($m[1])));
var_dump(str_replace('\\/', '\\', strtolower($m[1])));
} else {
echo $info;
}