Commit d57d041d authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

curlssl: make tls backend symbols use curlssl in the name

parent 4c2e40a4
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1994,7 +1994,7 @@ CURLcode Curl_setopt(struct SessionHandle *data, CURLoption option,
                       va_arg(param, char *));
    break;
  case CURLOPT_CAPATH:
#ifdef have_ca_path /* not supported by all backends */
#ifdef have_curlssl_ca_path /* not supported by all backends */
    /*
     * Set CA path info for SSL connection. Specify directory name of the CA
     * certificates which have been prepared using openssl c_rehash utility.
+1 −1
Original line number Diff line number Diff line
@@ -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
+1 −1
Original line number Diff line number Diff line
@@ -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()