summaryrefslogtreecommitdiff
path: root/content/fetch.c
diff options
context:
space:
mode:
authorVincent Sanders <vince@netsurf-browser.org>2011-02-15 23:18:10 +0000
committerVincent Sanders <vince@netsurf-browser.org>2011-02-15 23:18:10 +0000
commitfa98e3d76ada300d69e04816bfe15b2d560c9f7d (patch)
treeb044b5053a013838723e5206ea98d2cf1660409d /content/fetch.c
parent4f47cad962ab9cb49db5f249b740cdff9ba40b20 (diff)
downloadnetsurf-fa98e3d76ada300d69e04816bfe15b2d560c9f7d.tar.gz
netsurf-fa98e3d76ada300d69e04816bfe15b2d560c9f7d.tar.bz2
add about: fetcher
rename fetchers to be more sensible svn path=/trunk/netsurf/; revision=11692
Diffstat (limited to 'content/fetch.c')
-rw-r--r--content/fetch.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/content/fetch.c b/content/fetch.c
index a90568b1b..b07964861 100644
--- a/content/fetch.c
+++ b/content/fetch.c
@@ -38,9 +38,9 @@
#include "utils/config.h"
#include "content/fetch.h"
-#include "content/fetchers/fetch_curl.h"
-#include "content/fetchers/fetch_data.h"
-#include "content/fetchers/fetch_file.h"
+#include "content/fetchers/curl.h"
+#include "content/fetchers/data.h"
+#include "content/fetchers/file.h"
#include "content/urldb.h"
#include "desktop/netsurf.h"
#include "desktop/options.h"
@@ -111,6 +111,7 @@ void fetch_init(void)
fetch_curl_register();
fetch_data_register();
fetch_file_register();
+ fetch_about_register();
fetch_active = false;
}