summaryrefslogtreecommitdiff
path: root/ext/openssl/tests/bug46127.phpt
diff options
context:
space:
mode:
authorDaniel Lowrey <rdlowrey@php.net>2014-02-26 13:06:08 -0700
committerDaniel Lowrey <rdlowrey@php.net>2014-02-26 13:20:06 -0700
commitd0a6f8c68ec1044e936735f28bdc1bbd35f81362 (patch)
treecdb21cee6c184ce39df70e6f7f9dfee00ef82436 /ext/openssl/tests/bug46127.phpt
parent96d0bb7bcab6bba97838bff6178b5f9d25c955cc (diff)
downloadphp-git-d0a6f8c68ec1044e936735f28bdc1bbd35f81362.tar.gz
Deprecate CN_match in favor of peer_name in SSL contexts
Diffstat (limited to 'ext/openssl/tests/bug46127.phpt')
-rw-r--r--ext/openssl/tests/bug46127.phpt2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/openssl/tests/bug46127.phpt b/ext/openssl/tests/bug46127.phpt
index 6a3d1a0d6c..80bd61c287 100644
--- a/ext/openssl/tests/bug46127.phpt
+++ b/ext/openssl/tests/bug46127.phpt
@@ -27,7 +27,7 @@ $clientCode = <<<'CODE'
$clientCtx = stream_context_create(['ssl' => [
'verify_peer' => false,
- 'verify_host' => false
+ 'verify_peer_name' => false
]]);
phpt_wait();