diff options
author | Daniel Stenberg <daniel@haxx.se> | 2019-12-02 10:55:33 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2019-12-03 16:28:50 +0100 |
commit | 564d88a8bd190a21b362d6da535fccf74d33394d (patch) | |
tree | f1d0c5c77852f77bd2eb08e978925e2a79a9a495 /lib/setopt.c | |
parent | 94f1f771586913addf5c68f9219e176036c50115 (diff) | |
download | curl-564d88a8bd190a21b362d6da535fccf74d33394d.tar.gz |
openssl: CURLSSLOPT_NO_PARTIALCHAIN can disable partial cert chains
Closes #4655
Diffstat (limited to 'lib/setopt.c')
-rw-r--r-- | lib/setopt.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/setopt.c b/lib/setopt.c index 64c29e333..d7b9ca285 100644 --- a/lib/setopt.c +++ b/lib/setopt.c @@ -2133,6 +2133,7 @@ CURLcode Curl_vsetopt(struct Curl_easy *data, CURLoption option, va_list param) data->set.ssl.enable_beast = (bool)((arg&CURLSSLOPT_ALLOW_BEAST) ? TRUE : FALSE); data->set.ssl.no_revoke = !!(arg & CURLSSLOPT_NO_REVOKE); + data->set.ssl.no_partialchain = !!(arg & CURLSSLOPT_NO_PARTIALCHAIN); break; #ifndef CURL_DISABLE_PROXY |