summaryrefslogtreecommitdiff
path: root/content/fetchers/about.c
diff options
context:
space:
mode:
authorMichael Drake <tlsa@netsurf-browser.org>2011-02-20 22:38:43 +0000
committerMichael Drake <tlsa@netsurf-browser.org>2011-02-20 22:38:43 +0000
commitf54fc080c2a96ffdb713a9c8b5d0ccb604197c07 (patch)
treec24d2d06960d27a967a0fd56fa263f20f692b9cc /content/fetchers/about.c
parentc95460da05ff7f73d79772b1a86cbbf72dd3e131 (diff)
downloadnetsurf-f54fc080c2a96ffdb713a9c8b5d0ccb604197c07.tar.gz
netsurf-f54fc080c2a96ffdb713a9c8b5d0ccb604197c07.tar.bz2
Add module namespace to options_snoptionf()
svn path=/trunk/netsurf/; revision=11739
Diffstat (limited to 'content/fetchers/about.c')
-rw-r--r--content/fetchers/about.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/content/fetchers/about.c b/content/fetchers/about.c
index c93fdbad4..c5d421c29 100644
--- a/content/fetchers/about.c
+++ b/content/fetchers/about.c
@@ -199,7 +199,8 @@ static bool fetch_about_config_handler(struct fetch_about_context *ctx)
"<table><tr><th></th><th></th><th></th></tr>");
do {
- res = snoptionf(buffer + slen, sizeof buffer - slen, opt_loop,
+ res = options_snoptionf(buffer + slen, sizeof buffer - slen,
+ opt_loop,
"<tr><td>%k</td><td>%t</td><td>%V</td></tr>");
if (res <= 0)
break; /* last option */
@@ -255,7 +256,7 @@ static bool fetch_about_choices_handler(struct fetch_about_context *ctx)
"# Automatically generated current NetSurf browser Choices\n");
do {
- res = snoptionf(buffer + slen,
+ res = options_snoptionf(buffer + slen,
sizeof buffer - slen,
opt_loop,
"%k:%v\n");