summaryrefslogtreecommitdiff
path: root/desktop
diff options
context:
space:
mode:
authorMichael Drake <tlsa@netsurf-browser.org>2015-01-02 13:37:39 +0000
committerMichael Drake <tlsa@netsurf-browser.org>2015-01-02 13:37:39 +0000
commit27ea134be4740c7e9ec34a18a942676ba9b03be7 (patch)
tree053c4d1ca6702784bb0ff31d8b598723d7588843 /desktop
parente31ae2c5a12df0e14d93adca2b83adfe6939bb0b (diff)
downloadnetsurf-27ea134be4740c7e9ec34a18a942676ba9b03be7.tar.gz
netsurf-27ea134be4740c7e9ec34a18a942676ba9b03be7.tar.bz2
RISC OS filenames can't contian '.'
Diffstat (limited to 'desktop')
-rw-r--r--desktop/hotlist.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/desktop/hotlist.c b/desktop/hotlist.c
index 615146a72..661ea2e75 100644
--- a/desktop/hotlist.c
+++ b/desktop/hotlist.c
@@ -732,7 +732,7 @@ nserror hotlist_load_directory_cb(dom_node *node, void *ctx)
*/
static nserror hotlist_get_temp_path(const char *path, char **temp_path)
{
- const char *extension = ".bk";
+ const char *extension = "-bk";
char *joined;
int len;