From 413248d0fc33d3615db618628e79837f22a6bb6e Mon Sep 17 00:00:00 2001 From: Daniel Silverstone Date: Fri, 9 Nov 2012 11:38:46 +0000 Subject: Rough implementation of httponly cookie support --- content/fetchers/curl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'content/fetchers') diff --git a/content/fetchers/curl.c b/content/fetchers/curl.c index 400d0efcf..ff7ccbe30 100644 --- a/content/fetchers/curl.c +++ b/content/fetchers/curl.c @@ -597,7 +597,7 @@ fetch_curl_set_options(struct curl_fetch_info *f) SETOPT(CURLOPT_HTTPGET, 1L); } - f->cookie_string = urldb_get_cookie(f->url); + f->cookie_string = urldb_get_cookie(f->url, true); if (f->cookie_string) { SETOPT(CURLOPT_COOKIE, f->cookie_string); } else { -- cgit v1.2.3