Skip to content

Commit fa0d507

Browse files
committed
Merge branch 'PHP-5.3' into PHP-5.4
* PHP-5.3: Fix bug #61401 ext\openssl\tests\004.phpt fails Fix bug #61404 ext\openssl\tests\021.phpt fails Fix bug #61448 intl tests fail with icu >= 4.8
2 parents 4c5b427 + bff8152 commit fa0d507

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ext/openssl/tests/004.phpt

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@ $a = 1;
99
var_dump(openssl_csr_new(1,$a));
1010
var_dump(openssl_csr_new(1,$a,1,1));
1111
$a = array();
12-
var_dump(openssl_csr_new(array(), $a, array(), array()));
12+
var_dump(openssl_csr_new(array(), $a, array('config' => __DIR__ . DIRECTORY_SEPARATOR . 'openssl.cnf'), array()));
1313

1414
//this leaks
1515
$a = array(1,2);
1616
$b = array(1,2);
17-
var_dump(openssl_csr_new($a, $b));
17+
var_dump(openssl_csr_new($a, $b, array('config' => __DIR__ . DIRECTORY_SEPARATOR . 'openssl.cnf')));
1818

1919

2020
echo "Done\n";

0 commit comments

Comments
 (0)