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

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>

---------

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 GitHub
parent a9ab62d54d
commit 4a934005b4

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;
}