diff options
author | Tatsuya Kinoshita <tats@debian.org> | 2021-02-27 00:28:09 +0000 |
---|---|---|
committer | Tatsuya Kinoshita <tats@debian.org> | 2021-02-27 00:28:09 +0000 |
commit | 47465517de2d82148e2a63be4dbddf2bda96c49c (patch) | |
tree | 5af2cc2fa0830718018114953b8a8875cd14c1bf | |
parent | One more fix overflow due to Strgrow (diff) | |
download | w3m-47465517de2d82148e2a63be4dbddf2bda96c49c.tar.gz w3m-47465517de2d82148e2a63be4dbddf2bda96c49c.zip |
Revert "Fix OpenSSL default always overrides ssl_ca_file and ssl_ca_path"
This reverts commit a1b9d1b4b5a96c6fe8a92ca67e03c481eb659bd2.
Diffstat (limited to '')
-rw-r--r-- | url.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -400,7 +400,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 */ |