diff options
author | Hannes Magnusson <bjori@php.net> | 2006-10-13 09:59:21 +0000 |
---|---|---|
committer | Hannes Magnusson <bjori@php.net> | 2006-10-13 09:59:21 +0000 |
commit | 942b11a581c2973780fa5ad44dd3a3b827019820 (patch) | |
tree | d6647bd438a77e00aa3498cc3a5326fcc687f2db | |
parent | e4bdd6fcba973847bf3f7eab3a2bf7d995be8a4e (diff) | |
download | php-git-942b11a581c2973780fa5ad44dd3a3b827019820.tar.gz |
fix test
-rw-r--r-- | ext/openssl/tests/bug28382.phpt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/openssl/tests/bug28382.phpt b/ext/openssl/tests/bug28382.phpt index eecc088887..7302f59fa6 100644 --- a/ext/openssl/tests/bug28382.phpt +++ b/ext/openssl/tests/bug28382.phpt @@ -7,7 +7,7 @@ if (OPENSSL_VERSION_NUMBER<0x009070af) die("skip"); ?> --FILE-- <?php -$cert = file_get_contents(dirname(__FILE__) . "/bug28382cert.txt", "rb"); +$cert = file_get_contents(dirname(__FILE__) . "/bug28382cert.txt"); $ext = openssl_x509_parse($cert); var_dump($ext['extensions']); ?> |