From f1c2dde13bf1ca59a466cfed2f2d2076c06b235f Mon Sep 17 00:00:00 2001 From: Vincent Sanders Date: Thu, 5 Jun 2014 12:06:47 +0100 Subject: extend file table with mkdir all and make fs backing store use it. enable fs backing store for RISC OS. --- gtk/gui.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gtk/gui.c') diff --git a/gtk/gui.c b/gtk/gui.c index 6933c2e1e..7de448c0b 100644 --- a/gtk/gui.c +++ b/gtk/gui.c @@ -1092,7 +1092,7 @@ static nserror create_config_home(char **config_home_out) } /* ensure all elements of path exist (the trailing / is required) */ - ret = filepath_mkdir_all(config_home); + ret = netsurf_mkdir_all(config_home); if (ret != NSERROR_OK) { free(config_home); return ret; @@ -1190,7 +1190,7 @@ static nserror create_cache_home(char **cache_home_out) } /* ensure all elements of path exist (the trailing / is required) */ - ret = filepath_mkdir_all(cache_home); + ret = netsurf_mkdir_all(cache_home); if (ret != NSERROR_OK) { free(cache_home); return ret; -- cgit v1.2.3