From 21a3c99d3dcf20e13cdcf16fda6f01f6e6a3a1b3 Mon Sep 17 00:00:00 2001 From: James Bursa Date: Sat, 31 May 2008 16:57:53 +0000 Subject: Remove unused members of struct fetch (were moved to fetch_curl but not removed from here). svn path=/trunk/netsurf/; revision=4232 --- content/fetch.c | 4 ---- 1 file changed, 4 deletions(-) (limited to 'content/fetch.c') diff --git a/content/fetch.c b/content/fetch.c index 06d1e41b8..f3433d040 100644 --- a/content/fetch.c +++ b/content/fetch.c @@ -77,8 +77,6 @@ static scheme_fetcher *fetchers = NULL; /** Information for a single fetch. */ struct fetch { fetch_callback callback;/**< Callback function. */ - bool abort; /**< Abort requested. */ - bool stopped; /**< Download stopped on purpose. */ char *url; /**< URL. */ char *referer; /**< Referer URL. */ bool send_referer; /**< Valid to send the referer */ @@ -269,8 +267,6 @@ struct fetch * fetch_start(const char *url, const char *referer, /* construct a new fetch structure */ fetch->callback = callback; - fetch->abort = false; - fetch->stopped = false; fetch->url = strdup(url); fetch->verifiable = verifiable; fetch->parent_fetch_url = parent_url ? strdup(parent_url) : 0; -- cgit v1.2.3