diff options
| author | Tatsuya Kinoshita <tats@debian.org> | 2021-02-12 14:06:23 +0000 | 
|---|---|---|
| committer | Tatsuya Kinoshita <tats@debian.org> | 2021-02-13 16:11:42 +0000 | 
| commit | a1b9d1b4b5a96c6fe8a92ca67e03c481eb659bd2 (patch) | |
| tree | 7c442e025293a779fdec21da931acc3f34edcbeb | |
| parent | Disable <section> behaves as <hr> (diff) | |
| download | w3m-a1b9d1b4b5a96c6fe8a92ca67e03c481eb659bd2.tar.gz w3m-a1b9d1b4b5a96c6fe8a92ca67e03c481eb659bd2.zip | |
Fix OpenSSL default always overrides ssl_ca_file and ssl_ca_pathv0.5.3+git20210102+deb11u0.2
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 */ | 
