aboutsummaryrefslogtreecommitdiffstats
path: root/e-util
diff options
context:
space:
mode:
authorSrinivasa Ragavan <sragavan@src.gnome.org>2007-05-14 11:32:39 +0800
committerSrinivasa Ragavan <sragavan@src.gnome.org>2007-05-14 11:32:39 +0800
commit058c51d4f75dc786e79649d2543c0ce6369b1b75 (patch)
treed833316bbeea0bf32e7a888b24a357942f9fd0eb /e-util
parent5046efdb05725e43742ea23fdd3f16a61bbd08ff (diff)
downloadgsoc2013-evolution-058c51d4f75dc786e79649d2543c0ce6369b1b75.tar
gsoc2013-evolution-058c51d4f75dc786e79649d2543c0ce6369b1b75.tar.gz
gsoc2013-evolution-058c51d4f75dc786e79649d2543c0ce6369b1b75.tar.bz2
gsoc2013-evolution-058c51d4f75dc786e79649d2543c0ce6369b1b75.tar.lz
gsoc2013-evolution-058c51d4f75dc786e79649d2543c0ce6369b1b75.tar.xz
gsoc2013-evolution-058c51d4f75dc786e79649d2543c0ce6369b1b75.tar.zst
gsoc2013-evolution-058c51d4f75dc786e79649d2543c0ce6369b1b75.zip
fix for bug #432867
svn path=/trunk/; revision=33526
Diffstat (limited to 'e-util')
-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;