summaryrefslogtreecommitdiff
path: root/content/fetchers/about.c
diff options
context:
space:
mode:
authorMichael Drake <tlsa@netsurf-browser.org>2014-01-24 20:08:41 +0000
committerMichael Drake <tlsa@netsurf-browser.org>2014-01-24 20:08:41 +0000
commit14238615a43f3c0f57790ab4b54fd44204695179 (patch)
treee07ea5f844f9aaea5a69d63c9e3a03a1c9f5462d /content/fetchers/about.c
parente32dc31b04b8db0c27ef666e85a0cd058302fb15 (diff)
downloadnetsurf-14238615a43f3c0f57790ab4b54fd44204695179.tar.gz
netsurf-14238615a43f3c0f57790ab4b54fd44204695179.tar.bz2
Use corestrings for "about", "data", and "resource".
Diffstat (limited to 'content/fetchers/about.c')
-rw-r--r--content/fetchers/about.c9
1 files changed, 2 insertions, 7 deletions
diff --git a/content/fetchers/about.c b/content/fetchers/about.c
index cac8b2b01..8e973a9cc 100644
--- a/content/fetchers/about.c
+++ b/content/fetchers/about.c
@@ -48,6 +48,7 @@
#include "content/urldb.h"
#include "desktop/netsurf.h"
#include "utils/nsoption.h"
+#include "utils/corestrings.h"
#include "utils/log.h"
#include "utils/messages.h"
#include "utils/url.h"
@@ -839,13 +840,7 @@ static void fetch_about_poll(lwc_string *scheme)
void fetch_about_register(void)
{
- lwc_string *scheme;
-
- if (lwc_intern_string("about", SLEN("about"),
- &scheme) != lwc_error_ok) {
- die("Failed to initialise the fetch module "
- "(couldn't intern \"about\").");
- }
+ lwc_string *scheme = lwc_string_ref(corestring_lwc_about);
fetch_add_fetcher(scheme,
fetch_about_initialise,