summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2003-09-09 21:11:25 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2003-09-09 21:11:25 +0000
commit710f066cb8103bbbf2e7ea962e72be982efd20ab (patch)
treebd8f3ec7de10d2166ff6131164c90a004606aa73
parentddb2b9871649a38eec0a3e2465fe433fc82186e4 (diff)
downloadnetsurf-710f066cb8103bbbf2e7ea962e72be982efd20ab.tar.gz
netsurf-710f066cb8103bbbf2e7ea962e72be982efd20ab.tar.bz2
[project @ 2003-09-09 21:11:25 by jmb]
Move the Choices file to Choices:WWW.NetSurf - unfortunately, anyone who has already used NetSurf will now have a spurious Choices file in Choices:NetSurf svn path=/import/netsurf/; revision=276
-rw-r--r--riscos/options.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/riscos/options.c b/riscos/options.c
index 9dad0859d..5e5ba5384 100644
--- a/riscos/options.c
+++ b/riscos/options.c
@@ -66,7 +66,7 @@ const char* yesno(int q)
return "N";
}
-static const char * const WRITE_DIR = "<Choices$Write>.NetSurf";
+static const char * const WRITE_DIR = "<Choices$Write>.WWW.NetSurf";
void options_write(struct options* opt, char* filename)
{
@@ -127,7 +127,7 @@ void options_read(struct options* opt, char* filename)
int size;
fn = xcalloc(20 + (filename == 0 ? 7 : strlen(filename)), sizeof(char));
- sprintf(fn, "Choices:NetSurf.%s", filename == 0 ? "Choices" : filename);
+ sprintf(fn, "Choices:WWW.NetSurf.%s", filename == 0 ? "Choices" : filename);
LOG(("Getting file info"));
if (xmessagetrans_file_info(fn, &flags, &size) != NULL)