summaryrefslogtreecommitdiff
path: root/riscos
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2007-01-27 20:58:20 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2007-01-27 20:58:20 +0000
commitdf4dbaf4cfebf0b8b5ec9ae7d0bf6ae467609a4e (patch)
tree8668484e194b0f7cb6fbc169f04e0cae2d85374a /riscos
parentcd98970628e9cfcea702df8038ed653a8d1ea6a2 (diff)
downloadnetsurf-df4dbaf4cfebf0b8b5ec9ae7d0bf6ae467609a4e.tar.gz
netsurf-df4dbaf4cfebf0b8b5ec9ae7d0bf6ae467609a4e.tar.bz2
Handle cookies in unverifiable transactions
svn path=/trunk/netsurf/; revision=3151
Diffstat (limited to 'riscos')
-rw-r--r--riscos/plugin.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/riscos/plugin.c b/riscos/plugin.c
index f4975c742..1ac86970f 100644
--- a/riscos/plugin.c
+++ b/riscos/plugin.c
@@ -1651,7 +1651,7 @@ bool plugin_start_fetch(struct plugin_stream *p, const char *url)
}
c = fetchcache(url2, plugin_stream_callback, (intptr_t)p, 0,
- 100, 100, true, 0, 0, true, true);
+ 100, 100, true, 0, 0, false, true);
free(url2);
if (!c) {
return false;
@@ -1659,7 +1659,7 @@ bool plugin_start_fetch(struct plugin_stream *p, const char *url)
p->c = c;
fetchcache_go(c, 0, plugin_stream_callback, (intptr_t)p, 0,
- 100, 100, 0, 0, true);
+ 100, 100, 0, 0, false);
return true;
}