summaryrefslogtreecommitdiff
path: root/content/fetch.c
diff options
context:
space:
mode:
authorMichael Drake <tlsa@netsurf-browser.org>2011-09-29 15:31:54 +0000
committerMichael Drake <tlsa@netsurf-browser.org>2011-09-29 15:31:54 +0000
commit6cfd37e60f0181916906de67c9f86cf54ab565c2 (patch)
treed68c3e909b2f1f4a1403c8af73fb68d0e33fc97e /content/fetch.c
parent828d8e0de8a643f74ddd019bd8afe663c65540e9 (diff)
downloadnetsurf-6cfd37e60f0181916906de67c9f86cf54ab565c2.tar.gz
netsurf-6cfd37e60f0181916906de67c9f86cf54ab565c2.tar.bz2
Convert fetchers to nsurl.
svn path=/trunk/netsurf/; revision=12910
Diffstat (limited to 'content/fetch.c')
-rw-r--r--content/fetch.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/content/fetch.c b/content/fetch.c
index 651f02a7b..23650c530 100644
--- a/content/fetch.c
+++ b/content/fetch.c
@@ -317,8 +317,7 @@ struct fetch * fetch_start(nsurl *url, nsurl *referer,
goto failed;
/* Got a scheme fetcher, try and set up the fetch */
- fetch->fetcher_handle =
- fetch->ops->setup_fetch(fetch, nsurl_access(url),
+ fetch->fetcher_handle = fetch->ops->setup_fetch(fetch, url,
only_2xx, post_urlenc,
post_multipart, headers);