Commit 0a50a87d authored by Matt Colyer's avatar Matt Colyer

Fixed bogus file permissions on the configuration directory.

parent bc6f309b
......@@ -260,7 +260,7 @@ inline void create_config_dir() {
gchar* config_dir;
config_dir = g_build_path(G_DIR_SEPARATOR_S, g_get_user_config_dir(), LIBIPHONE_CONF_DIR, NULL);
g_mkdir_with_parents(config_dir, 755);
g_mkdir_with_parents(config_dir, 0755);
g_free(config_dir);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment