Skip to content

Commit

Permalink
http_async_client: fix initialization of tls_client_* and tls_ca_path…
Browse files Browse the repository at this point in the history
… module parameters

fixes #1340

(cherry picked from commit 7c61d3f)
  • Loading branch information
linuxmaniac committed Dec 26, 2017
1 parent a466009 commit 62ff60d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/modules/http_async_client/http_async_client_mod.c
Original file line number Diff line number Diff line change
Expand Up @@ -70,9 +70,9 @@ int tls_version = 0; // Use default SSL version in HTTPS requests (see curl/curl
int tls_verify_host = 1; // By default verify host in HTTPS requests
int tls_verify_peer = 1; // By default verify peer in HTTPS requests
int curl_verbose = 0;
char* tls_client_cert = ""; // client SSL certificate path, defaults to NULL
char* tls_client_key = ""; // client SSL certificate key path, defaults to NULL
char* tls_ca_path = ""; // certificate authority dir path, defaults to NULL
char* tls_client_cert = NULL; // client SSL certificate path, defaults to NULL
char* tls_client_key = NULL; // client SSL certificate key path, defaults to NULL
char* tls_ca_path = NULL; // certificate authority dir path, defaults to NULL
static char *memory_manager = "shm";
extern int curl_memory_manager;
unsigned int default_authmethod = CURLAUTH_BASIC | CURLAUTH_DIGEST;
Expand Down

0 comments on commit 62ff60d

Please sign in to comment.