aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTatsuya Kinoshita <tats@debian.org>2021-02-13 04:56:00 +0000
committerTatsuya Kinoshita <tats@debian.org>2021-02-13 04:56:00 +0000
commit1644c3b897cfbb122fb995034ea2b96684040f29 (patch)
tree2571bb69f2a4984d0456ac125f252f286591be7e
parentUpdate ChangeLog (diff)
downloadw3m-1644c3b897cfbb122fb995034ea2b96684040f29.tar.gz
w3m-1644c3b897cfbb122fb995034ea2b96684040f29.zip
Use ssl_ca_file and ssl_ca_path only when ssl_verify_server
-rw-r--r--url.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/url.c b/url.c
index a91ef91..e267560 100644
--- a/url.c
+++ b/url.c
@@ -446,6 +446,7 @@ openSSLHandle(int sock, char *hostname, char **p_cert)
}
if ((!ssl_ca_file || *ssl_ca_file == '\0')
&& (!ssl_ca_path || *ssl_ca_path == '\0')
+ || !ssl_verify_server
|| !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);