summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakub Zelenka <bukka@php.net>2019-05-05 21:05:55 +0100
committerJakub Zelenka <bukka@php.net>2019-05-05 21:05:55 +0100
commit36a7d9fca4039624c13902230cd33c3d535b8642 (patch)
treed22cc0d22fcfe9b5f9119962cecb00b2e04c832e
parent78d24429f2b0131d684217be5afdcb805eb98cf2 (diff)
parent9977de00284c2b702e4aadfcc66069befa0aaf75 (diff)
downloadphp-git-36a7d9fca4039624c13902230cd33c3d535b8642.tar.gz
Merge branch 'PHP-7.2' into PHP-7.3
-rw-r--r--ext/openssl/tests/bug65538_002.phpt2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/openssl/tests/bug65538_002.phpt b/ext/openssl/tests/bug65538_002.phpt
index 7dddb12564..2a06d2d1b6 100644
--- a/ext/openssl/tests/bug65538_002.phpt
+++ b/ext/openssl/tests/bug65538_002.phpt
@@ -13,7 +13,7 @@ $clientCtx = stream_context_create(['ssl' => [
// We can't use http://curl.haxx.se/ca/cacert.pem for this test
// as it is redirected to https which means the test would depend
// on system cafile when opening stream.
- 'cafile' => 'http://www.php.net',
+ 'cafile' => 'http://www.nginx.org',
]]);
file_get_contents('https://github.com', false, $clientCtx);
?>