]> spindle.queued.net Git - midori/commitdiff
Save files with permissions of 0700 instead of 0755
authorEnrico Tröger <enrico.troeger@uvena.de>
Sat, 15 Nov 2008 23:21:22 +0000 (00:21 +0100)
committerChristian Dywan <christian@twotoasts.de>
Sat, 15 Nov 2008 23:21:22 +0000 (00:21 +0100)
katze/katze-net.c
midori/main.c

index 9fa651e259ef2e4e7f1ba0067a2b3049e2dbf471..d1e88eee184e76c8ee743176a0ab14ef663c82d3 100644 (file)
@@ -139,7 +139,7 @@ katze_net_get_cached_path (KatzeNet*    net,
         cache_path = g_build_filename (net->cache_path, subfolder, NULL);
     else
         cache_path = net->cache_path;
-    g_mkdir_with_parents (cache_path, 0755);
+    g_mkdir_with_parents (cache_path, 0700);
     #if GLIB_CHECK_VERSION (2, 16, 0)
     checksum = g_compute_checksum_for_string (G_CHECKSUM_MD5, uri, -1);
     #else
index 8130ec09d71106ce7963c2833b8c40b86067a578..2e994ac5066b36b23d40fa3926aa485fd2f54d9c 100644 (file)
@@ -1012,7 +1012,7 @@ midori_browser_session_cb (MidoriBrowser* browser,
 
     config_path = g_build_filename (g_get_user_config_dir (),
                                     PACKAGE_NAME, NULL);
-    g_mkdir_with_parents (config_path, 0755);
+    g_mkdir_with_parents (config_path, 0700);
     config_file = g_build_filename (config_path, "session.xbel", NULL);
     error = NULL;
     if (!katze_array_to_file (session, config_file, &error))
@@ -1160,7 +1160,7 @@ main (int    argc,
     GString* error_messages = g_string_new (NULL);
     gchar* config_path = g_build_filename (g_get_user_config_dir (),
                                            PACKAGE_NAME, NULL);
-    g_mkdir_with_parents (config_path, 0755);
+    g_mkdir_with_parents (config_path, 0700);
     gchar* config_file = g_build_filename (config_path, "config", NULL);
     error = NULL;
     MidoriWebSettings* settings = settings_new_from_file (config_file);
@@ -1387,7 +1387,7 @@ main (int    argc,
     /* Save configuration files */
     config_path = g_build_filename (g_get_user_config_dir (), PACKAGE_NAME,
                                     NULL);
-    g_mkdir_with_parents (config_path, 0755);
+    g_mkdir_with_parents (config_path, 0700);
     g_object_unref (history);
     #ifdef HAVE_SQLITE
     g_object_get (settings, "maximum-history-age", &max_history_age, NULL);