summaryrefslogtreecommitdiff
path: root/ext/openssl
diff options
context:
space:
mode:
authorAnatoliy Belsky <ab@php.net>2012-03-28 17:25:23 +0200
committerAnatoliy Belsky <ab@php.net>2012-03-28 17:25:23 +0200
commit40bbc7a1ed999d7cc98e656a6956e4d861d744a5 (patch)
tree1de828a8bb9ef6e98cdff272d556f2b8d4ec220a /ext/openssl
parentb90516745821a5340bc52f1b1825e9b8614ff9f6 (diff)
parentfa0d507923b8dc07ff91576121543b18549dda3a (diff)
downloadphp-git-40bbc7a1ed999d7cc98e656a6956e4d861d744a5.tar.gz
Merge branch 'PHP-5.4'
* PHP-5.4: Fix bug #61401 ext\openssl\tests\004.phpt fails Fix bug #61404 ext\openssl\tests\021.phpt fails Fix bug #61404 ext\openssl\tests\021.phpt fails Fix bug #61448 intl tests fail with icu >= 4.8
Diffstat (limited to 'ext/openssl')
-rw-r--r--ext/openssl/tests/004.phpt4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/openssl/tests/004.phpt b/ext/openssl/tests/004.phpt
index c6c7e874cf..508ccabc85 100644
--- a/ext/openssl/tests/004.phpt
+++ b/ext/openssl/tests/004.phpt
@@ -9,12 +9,12 @@ $a = 1;
var_dump(openssl_csr_new(1,$a));
var_dump(openssl_csr_new(1,$a,1,1));
$a = array();
-var_dump(openssl_csr_new(array(), $a, array(), array()));
+var_dump(openssl_csr_new(array(), $a, array('config' => __DIR__ . DIRECTORY_SEPARATOR . 'openssl.cnf'), array()));
//this leaks
$a = array(1,2);
$b = array(1,2);
-var_dump(openssl_csr_new($a, $b));
+var_dump(openssl_csr_new($a, $b, array('config' => __DIR__ . DIRECTORY_SEPARATOR . 'openssl.cnf')));
echo "Done\n";