summaryrefslogtreecommitdiff
path: root/content/fetchers
diff options
context:
space:
mode:
authorDaniel Silverstone <dsilvers@digital-scurf.org>2012-11-09 11:38:46 +0000
committerDaniel Silverstone <dsilvers@digital-scurf.org>2012-11-09 11:38:46 +0000
commit413248d0fc33d3615db618628e79837f22a6bb6e (patch)
treea2c500ed60e17422d72a9fcb0d1c3a2e4c1f779c /content/fetchers
parent9318e664490420bdbfbd7695d203225087b59c07 (diff)
downloadnetsurf-413248d0fc33d3615db618628e79837f22a6bb6e.tar.gz
netsurf-413248d0fc33d3615db618628e79837f22a6bb6e.tar.bz2
Rough implementation of httponly cookie support
Diffstat (limited to 'content/fetchers')
-rw-r--r--content/fetchers/curl.c2
1 files changed, 1 insertions, 1 deletions
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 {