diff options
author | Chenthill Palanisamy <pchenthill@novell.com> | 2010-01-30 03:40:36 +0800 |
---|---|---|
committer | Chenthill Palanisamy <pchenthill@novell.com> | 2010-01-30 04:04:00 +0800 |
commit | 1359e1e546de15f3df0b033f58f212414862b0a9 (patch) | |
tree | 3ee614076989d772758e271ba58f170154eb056f /shell/e-shell-backend.c | |
parent | 960de9e18a044ccf60f8fdcf7cc536cc7b049d33 (diff) | |
download | gsoc2013-evolution-1359e1e546de15f3df0b033f58f212414862b0a9.tar.gz gsoc2013-evolution-1359e1e546de15f3df0b033f58f212414862b0a9.tar.zst gsoc2013-evolution-1359e1e546de15f3df0b033f58f212414862b0a9.zip |
Bug 581604 - Permissions on mail/local folders are too open
Diffstat (limited to 'shell/e-shell-backend.c')
-rw-r--r-- | shell/e-shell-backend.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/e-shell-backend.c b/shell/e-shell-backend.c index 79acf60fa9..18ebe0f8d8 100644 --- a/shell/e-shell-backend.c +++ b/shell/e-shell-backend.c @@ -162,7 +162,7 @@ shell_backend_get_config_dir (EShellBackend *shell_backend) /* Create the user configuration directory for this backend, * which should also create the user data directory. */ - if (g_mkdir_with_parents (config_dir, 0777) != 0) + if (g_mkdir_with_parents (config_dir, 0700) != 0) g_critical ( "Cannot create directory %s: %s", config_dir, g_strerror (errno)); |