diff options
author | Daniel Stenberg <daniel@haxx.se> | 2014-09-13 14:56:27 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2014-09-13 14:56:27 +0200 |
commit | 8250f93d413eaff47d8e2ac0284059afa92dcea4 (patch) | |
tree | eb9c571884789db72883a8c29ab80bbb180b9881 /lib/vtls/openssl.h | |
parent | 7d9bef9286cd8efbed032d41a36e82d1c44058a7 (diff) | |
download | curl-8250f93d413eaff47d8e2ac0284059afa92dcea4.tar.gz |
CURLOPT_CAPATH: return failure if set without backend support
Diffstat (limited to 'lib/vtls/openssl.h')
-rw-r--r-- | lib/vtls/openssl.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/vtls/openssl.h b/lib/vtls/openssl.h index 1a55ffc2f..6d6c75c82 100644 --- a/lib/vtls/openssl.h +++ b/lib/vtls/openssl.h @@ -76,6 +76,9 @@ void Curl_ossl_md5sum(unsigned char *tmp, /* input */ /* this backend provides these functions: */ #define have_curlssl_md5sum 1 +/* this backend supports the CAPATH option */ +#define have_ca_path 1 + /* API setup for OpenSSL */ #define curlssl_init Curl_ossl_init #define curlssl_cleanup Curl_ossl_cleanup |