summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--content/fetchers/curl.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/content/fetchers/curl.c b/content/fetchers/curl.c
index 8cb869e52..869c25f0c 100644
--- a/content/fetchers/curl.c
+++ b/content/fetchers/curl.c
@@ -200,10 +200,14 @@ void fetch_curl_register(void)
SETOPT(CURLOPT_NOSIGNAL, 1L);
SETOPT(CURLOPT_CONNECTTIMEOUT, 30L);
- if (option_ca_bundle && strcmp(option_ca_bundle, ""))
+ if (option_ca_bundle && strcmp(option_ca_bundle, "")) {
+ LOG(("option_ca_bundle: '%s'", option_ca_bundle));
SETOPT(CURLOPT_CAINFO, option_ca_bundle);
- if (option_ca_path && strcmp(option_ca_path, ""))
+ }
+ if (option_ca_path && strcmp(option_ca_path, "")) {
+ LOG(("option_ca_path: '%s'", option_ca_path));
SETOPT(CURLOPT_CAPATH, option_ca_path);
+ }
/* Detect whether the SSL CTX function API works */
curl_with_openssl = true;