summaryrefslogtreecommitdiff
path: root/src/core/rawlog.c
diff options
context:
space:
mode:
authorLemonBoy <thatlemon@gmail.com>2016-02-13 13:12:29 +0100
committerLemonBoy <thatlemon@gmail.com>2016-06-05 16:24:55 +0200
commitbb190be0bfac956ada4f74a514ff70f28b114efa (patch)
tree5abd9b45a6a65e0f0ed02e1885a4c2b671367718 /src/core/rawlog.c
parent1a6ec1b0b63c4ffbaf22137157a6fae3570b6839 (diff)
downloadirssi-bb190be0bfac956ada4f74a514ff70f28b114efa.zip
Replace mkpath with g_mkdir_with_parents
Diffstat (limited to 'src/core/rawlog.c')
-rw-r--r--src/core/rawlog.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/rawlog.c b/src/core/rawlog.c
index 875c0ef2..2b46c50d 100644
--- a/src/core/rawlog.c
+++ b/src/core/rawlog.c
@@ -150,7 +150,7 @@ void rawlog_save(RAWLOG_REC *rawlog, const char *fname)
int f;
dir = g_path_get_dirname(fname);
- mkpath(dir, log_dir_create_mode);
+ g_mkdir_with_parents(dir, log_dir_create_mode);
g_free(dir);
path = convert_home(fname);