aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--e-util/ChangeLog7
-rw-r--r--e-util/e-util.c2
2 files changed, 8 insertions, 1 deletions
diff --git a/e-util/ChangeLog b/e-util/ChangeLog
index a850b53f0d..f3a78ee7b2 100644
--- a/e-util/ChangeLog
+++ b/e-util/ChangeLog
@@ -1,3 +1,10 @@
+2007-05-04 Milan Crha <mcrha@redhat.com>
+
+ ** Fixes bug #432867
+
+ * e-util/e-util.c (e_write_file_uri) changed default
+ attribute for file from 0755 to 0644
+
2007-05-11 Srinivasa Ragavan <sragavan@novell.com>
* e-icon-factory.c: (e_icon_factory_init): Add support for themable
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;