summaryrefslogtreecommitdiff
path: root/content
diff options
context:
space:
mode:
authorJames Bursa <james@netsurf-browser.org>2008-05-31 16:57:53 +0000
committerJames Bursa <james@netsurf-browser.org>2008-05-31 16:57:53 +0000
commit21a3c99d3dcf20e13cdcf16fda6f01f6e6a3a1b3 (patch)
treed390083a35a0997feb6625d57f8bce4d7cfdce8e /content
parentef6690ad7260cfde8ac189fb0298db7f4706d00d (diff)
downloadnetsurf-21a3c99d3dcf20e13cdcf16fda6f01f6e6a3a1b3.tar.gz
netsurf-21a3c99d3dcf20e13cdcf16fda6f01f6e6a3a1b3.tar.bz2
Remove unused members of struct fetch (were moved to fetch_curl but not removed from here).
svn path=/trunk/netsurf/; revision=4232
Diffstat (limited to 'content')
-rw-r--r--content/fetch.c4
1 files changed, 0 insertions, 4 deletions
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;