diff options
author | Srinivasa Ragavan <sragavan@src.gnome.org> | 2006-08-23 15:59:00 +0800 |
---|---|---|
committer | Srinivasa Ragavan <sragavan@src.gnome.org> | 2006-08-23 15:59:00 +0800 |
commit | c09e79bbf4b00ae5992456ff9e3dead1ee8efcb7 (patch) | |
tree | 18cabb8ea8d5cebadcf36dae12bf37a9a9390d98 /mail/mail-ops.c | |
parent | f14ab0afa345a49816beb215a1b3e2042c13ec40 (diff) | |
download | gsoc2013-evolution-c09e79bbf4b00ae5992456ff9e3dead1ee8efcb7.tar.gz gsoc2013-evolution-c09e79bbf4b00ae5992456ff9e3dead1ee8efcb7.tar.zst gsoc2013-evolution-c09e79bbf4b00ae5992456ff9e3dead1ee8efcb7.zip |
** Fixes bug #347238
svn path=/trunk/; revision=32636
Diffstat (limited to 'mail/mail-ops.c')
-rw-r--r-- | mail/mail-ops.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mail/mail-ops.c b/mail/mail-ops.c index 5c8c97e2fd..c835c45f79 100644 --- a/mail/mail-ops.c +++ b/mail/mail-ops.c @@ -2093,7 +2093,7 @@ save_part_save (struct _mail_msg *mm) CamelStream *stream; if(!m->readonly){ - if (!(stream = camel_stream_vfs_new_with_uri (m->path, O_WRONLY | O_CREAT | O_TRUNC, 0666))) { + if (!(stream = camel_stream_vfs_new_with_uri (m->path, O_WRONLY | O_CREAT | O_TRUNC, 0644))) { camel_exception_setv (&mm->ex, CAMEL_EXCEPTION_SYSTEM, _("Cannot create output file: %s:\n %s"), m->path, g_strerror (errno)); |