diff options
author | Tatsuya Kinoshita <tats@debian.org> | 2021-02-12 14:06:23 +0000 |
---|---|---|
committer | Tatsuya Kinoshita <tats@debian.org> | 2021-02-12 14:06:23 +0000 |
commit | f0d17fecc44629b4c2d213e77af2e90160d8cb76 (patch) | |
tree | 19f30415c9c18226e86a00df32b26a2bcd61a4c6 /url.c | |
parent | Update ChangeLog (diff) | |
download | w3m-f0d17fecc44629b4c2d213e77af2e90160d8cb76.tar.gz w3m-f0d17fecc44629b4c2d213e77af2e90160d8cb76.zip |
Fix OpenSSL default always overrides ssl_ca_file and ssl_ca_path
Diffstat (limited to '')
-rw-r--r-- | url.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -445,7 +445,7 @@ openSSLHandle(int sock, char *hostname, char **p_cert) } } if ((!ssl_ca_file && !ssl_ca_path) - || SSL_CTX_load_verify_locations(ssl_ctx, ssl_ca_file, ssl_ca_path)) + || !SSL_CTX_load_verify_locations(ssl_ctx, ssl_ca_file, ssl_ca_path)) #endif /* defined(USE_SSL_VERIFY) */ SSL_CTX_set_default_verify_paths(ssl_ctx); #endif /* SSLEAY_VERSION_NUMBER >= 0x0800 */ |