aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSrinivasa Ragavan <sragavan@src.gnome.org>2007-05-28 02:16:50 +0800
committerSrinivasa Ragavan <sragavan@src.gnome.org>2007-05-28 02:16:50 +0800
commitfa5ca24c7d4bf99369941b92adc3c48b0a4d0542 (patch)
tree34acdd3b29086a1f46f9065ab4c9614562d6b8e3
parent10f742e92c60ec822a8f34d27b3efa5d68d48aeb (diff)
downloadgsoc2013-evolution-fa5ca24c7d4bf99369941b92adc3c48b0a4d0542.tar
gsoc2013-evolution-fa5ca24c7d4bf99369941b92adc3c48b0a4d0542.tar.gz
gsoc2013-evolution-fa5ca24c7d4bf99369941b92adc3c48b0a4d0542.tar.bz2
gsoc2013-evolution-fa5ca24c7d4bf99369941b92adc3c48b0a4d0542.tar.lz
gsoc2013-evolution-fa5ca24c7d4bf99369941b92adc3c48b0a4d0542.tar.xz
gsoc2013-evolution-fa5ca24c7d4bf99369941b92adc3c48b0a4d0542.tar.zst
gsoc2013-evolution-fa5ca24c7d4bf99369941b92adc3c48b0a4d0542.zip
** Fixes bug #432867
svn path=/branches/gnome-2-18/; revision=33588
-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 44f2a067d3..1a3fd2f533 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-03-01 Tor Lillqvist <tml@novell.com>
* e-print.c (print_dialog_response)
diff --git a/e-util/e-util.c b/e-util/e-util.c
index 5d854e0d51..9cb465ab30 100644
--- a/e-util/e-util.c
+++ b/e-util/e-util.c
@@ -247,7 +247,7 @@ e_write_file_uri (const char *filename, const char *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;