diff options
author | Srinivasa Ragavan <sragavan@src.gnome.org> | 2007-05-14 11:32:39 +0800 |
---|---|---|
committer | Srinivasa Ragavan <sragavan@src.gnome.org> | 2007-05-14 11:32:39 +0800 |
commit | 058c51d4f75dc786e79649d2543c0ce6369b1b75 (patch) | |
tree | d833316bbeea0bf32e7a888b24a357942f9fd0eb /e-util/e-util.c | |
parent | 5046efdb05725e43742ea23fdd3f16a61bbd08ff (diff) | |
download | gsoc2013-evolution-058c51d4f75dc786e79649d2543c0ce6369b1b75.tar.gz gsoc2013-evolution-058c51d4f75dc786e79649d2543c0ce6369b1b75.tar.zst gsoc2013-evolution-058c51d4f75dc786e79649d2543c0ce6369b1b75.zip |
fix for bug #432867
svn path=/trunk/; revision=33526
Diffstat (limited to 'e-util/e-util.c')
-rw-r--r-- | e-util/e-util.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/e-util/e-util.c b/e-util/e-util.c index 28deaa74e9..4cfc5988b2 100644 --- a/e-util/e-util.c +++ b/e-util/e-util.c @@ -105,7 +105,7 @@ e_write_file_uri (const gchar *filename, const gchar *data) GnomeVFSResult result; GnomeVFSHandle *handle = NULL; - result = gnome_vfs_create (&handle, filename, GNOME_VFS_OPEN_WRITE, FALSE, 0755); + result = gnome_vfs_create (&handle, filename, GNOME_VFS_OPEN_WRITE, FALSE, 0644); if (result != GNOME_VFS_OK) { g_warning ("Couldn't save item"); return 1; |