summaryrefslogtreecommitdiff
path: root/content/fetch.c
diff options
context:
space:
mode:
authorFrançois Revel <mmu_man@netsurf-browser.org>2011-05-15 20:01:25 +0000
committerFrançois Revel <mmu_man@netsurf-browser.org>2011-05-15 20:01:25 +0000
commitd25e5568bb082e26c0c3755b9cd504660cee0e70 (patch)
tree989b6ac5aec15448479fc3b822a97928165ce916 /content/fetch.c
parent6c2977ec293f61db2f0d5732b9b232fd355cabdf (diff)
downloadnetsurf-d25e5568bb082e26c0c3755b9cd504660cee0e70.tar.gz
netsurf-d25e5568bb082e26c0c3755b9cd504660cee0e70.tar.bz2
Add a redirecting fetcher for the doi: URI scheme. Not much used but just in case...
svn path=/trunk/netsurf/; revision=12412
Diffstat (limited to 'content/fetch.c')
-rw-r--r--content/fetch.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/content/fetch.c b/content/fetch.c
index e521ca2fc..416a40180 100644
--- a/content/fetch.c
+++ b/content/fetch.c
@@ -42,6 +42,7 @@
#include "content/fetchers/about.h"
#include "content/fetchers/curl.h"
#include "content/fetchers/data.h"
+#include "content/fetchers/doi.h"
#include "content/fetchers/file.h"
#include "content/urldb.h"
#include "desktop/netsurf.h"
@@ -112,6 +113,7 @@ void fetch_init(void)
{
fetch_curl_register();
fetch_data_register();
+ fetch_doi_register();
fetch_file_register();
fetch_resource_register();
fetch_about_register();