summaryrefslogtreecommitdiff
path: root/test/urldbtest.c
diff options
context:
space:
mode:
authorMichael Drake <tlsa@netsurf-browser.org>2013-04-08 17:25:12 +0100
committerMichael Drake <tlsa@netsurf-browser.org>2013-04-08 17:25:12 +0100
commit0d7d76a6f3e93646c438265fe80afacb54b75cfc (patch)
tree2baf7f0ce0e67e8f8d3b1931ec56e37ce94e0bee /test/urldbtest.c
parent04705b8e377cb83a7e649b9082dc9e204fd39624 (diff)
downloadnetsurf-0d7d76a6f3e93646c438265fe80afacb54b75cfc.tar.gz
netsurf-0d7d76a6f3e93646c438265fe80afacb54b75cfc.tar.bz2
Fix for http_only param change.
Diffstat (limited to 'test/urldbtest.c')
-rw-r--r--test/urldbtest.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/urldbtest.c b/test/urldbtest.c
index 9a683546c..ab441ffa5 100644
--- a/test/urldbtest.c
+++ b/test/urldbtest.c
@@ -144,7 +144,7 @@ char *test_urldb_get_cookie(const char *url)
nsurl *nsurl = make_url(url);
char *ret;
- ret = urldb_get_cookie(nsurl);
+ ret = urldb_get_cookie(nsurl, true);
nsurl_unref(nsurl);
return ret;
@@ -263,7 +263,7 @@ int main(void)
nsurl_unref(urlr);
url = make_url("https://www.foo.com/blah/wxyzabc");
- urldb_get_cookie(url);
+ urldb_get_cookie(url, true);
nsurl_unref(url);
/* 1563546 */