diff options
author | Daniel Stenberg <daniel@haxx.se> | 2014-09-13 15:31:12 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2014-09-13 15:31:12 +0200 |
commit | d57d041d672d124a430eb6a7a3a254fc993bd2a2 (patch) | |
tree | 6c124aef07c2937748bfe3634e012ec71a8a9d63 /lib/vtls | |
parent | 4c2e40a4889db370308c77e63dd2f10d3a292bdf (diff) |
curlssl: make tls backend symbols use curlssl in the name
Diffstat (limited to 'lib/vtls')
-rw-r--r-- | lib/vtls/openssl.h | 2 | ||||
-rw-r--r-- | lib/vtls/polarssl.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/vtls/openssl.h b/lib/vtls/openssl.h index 9c2602f94..59adcd83e 100644 --- a/lib/vtls/openssl.h +++ b/lib/vtls/openssl.h @@ -77,7 +77,7 @@ void Curl_ossl_md5sum(unsigned char *tmp, /* input */ #define have_curlssl_md5sum 1 /* this backend supports the CAPATH option */ -#define have_ca_path 1 +#define have_curlssl_ca_path 1 /* this backend supports CURLOPT_CERTINFO */ #define have_curlssl_certinfo 1 diff --git a/lib/vtls/polarssl.h b/lib/vtls/polarssl.h index dbe01966f..64139a63a 100644 --- a/lib/vtls/polarssl.h +++ b/lib/vtls/polarssl.h @@ -49,7 +49,7 @@ size_t Curl_polarssl_version(char *buffer, size_t size); int Curl_polarssl_shutdown(struct connectdata *conn, int sockindex); /* this backend supports the CAPATH option */ -#define have_ca_path 1 +#define have_curlssl_ca_path 1 /* API setup for PolarSSL */ #define curlssl_init() polarssl_init() |