summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/userpref.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/userpref.c b/src/userpref.c
index 46e97b7..68f5e32 100644
--- a/src/userpref.c
+++ b/src/userpref.c
@@ -260,7 +260,7 @@ inline void create_config_dir() {
260 gchar* config_dir; 260 gchar* config_dir;
261 261
262 config_dir = g_build_path(G_DIR_SEPARATOR_S, g_get_user_config_dir(), LIBIPHONE_CONF_DIR, NULL); 262 config_dir = g_build_path(G_DIR_SEPARATOR_S, g_get_user_config_dir(), LIBIPHONE_CONF_DIR, NULL);
263 g_mkdir_with_parents(config_dir, 755); 263 g_mkdir_with_parents(config_dir, 0755);
264 g_free(config_dir); 264 g_free(config_dir);
265} 265}
266 266