From e91cfc8e476c45c5c3ed87040033672fc1faab35 Mon Sep 17 00:00:00 2001 From: Daniel Silverstone Date: Wed, 27 Jun 2007 15:39:56 +0000 Subject: Add ca_path option which sets CURLOPT_CAPATH. svn path=/trunk/netsurf/; revision=3369 --- content/fetchers/fetch_curl.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'content/fetchers/fetch_curl.c') diff --git a/content/fetchers/fetch_curl.c b/content/fetchers/fetch_curl.c index 96517b659..3d8423b61 100644 --- a/content/fetchers/fetch_curl.c +++ b/content/fetchers/fetch_curl.c @@ -1344,6 +1344,8 @@ void register_curl_fetchers(void) if (option_ca_bundle) SETOPT(CURLOPT_CAINFO, option_ca_bundle); + if (option_ca_path) + SETOPT(CURLOPT_CAPATH, option_ca_path); /* cURL initialised okay, register the fetchers */ -- cgit v1.2.3