From df4dbaf4cfebf0b8b5ec9ae7d0bf6ae467609a4e Mon Sep 17 00:00:00 2001 From: John Mark Bell Date: Sat, 27 Jan 2007 20:58:20 +0000 Subject: Handle cookies in unverifiable transactions svn path=/trunk/netsurf/; revision=3151 --- riscos/plugin.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'riscos') 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; } -- cgit v1.2.3