From 381588bece3a59952bba9991b1f21eb32c640624 Mon Sep 17 00:00:00 2001 From: John Mark Bell Date: Thu, 19 May 2011 22:35:41 +0000 Subject: Log CA options svn path=/trunk/netsurf/; revision=12436 --- content/fetchers/curl.c | 8 ++++++-- 1 file 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; -- cgit v1.2.3