summaryrefslogtreecommitdiff
path: root/content/fetch.c
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2014-07-02 15:01:24 +0100
committerVincent Sanders <vince@kyllikki.org>2014-07-02 15:01:24 +0100
commit29e29cccd772c7be1b5cc878313287307ed7490f (patch)
tree7273e2ede4bdd54b8083e7056780647dbf705ee0 /content/fetch.c
parent516dcb96e111c6e1e0c1503ac156497aa15894d6 (diff)
downloadnetsurf-29e29cccd772c7be1b5cc878313287307ed7490f.tar.gz
netsurf-29e29cccd772c7be1b5cc878313287307ed7490f.tar.bz2
fix dumb error in previous commit and get scheme name element correct
Diffstat (limited to 'content/fetch.c')
-rw-r--r--content/fetch.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/content/fetch.c b/content/fetch.c
index abfdf4c97..6ee3872aa 100644
--- a/content/fetch.c
+++ b/content/fetch.c
@@ -306,10 +306,10 @@ void fetcher_quit(void)
* be stopped.
*/
LOG(("Fetcher for scheme %s still has %d active users at quit.",
- lwc_string_data(fetchers->scheme_name),
- fetchers->refcount));
+ lwc_string_data(fetchers[fetcherd].scheme),
+ fetchers[fetcherd].refcount));
- fetchers->refcount = 1;
+ fetchers[fetcherd].refcount = 1;
}
if (fetchers[fetcherd].refcount == 1) {