diff options
Diffstat (limited to 'camel/camel-stream-fs.c')
-rw-r--r-- | camel/camel-stream-fs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/camel/camel-stream-fs.c b/camel/camel-stream-fs.c index c7335f9821..09b193b229 100644 --- a/camel/camel-stream-fs.c +++ b/camel/camel-stream-fs.c @@ -111,7 +111,7 @@ camel_stream_fs_new_with_name (GString *name, CamelStreamFsMode mode) if ( (mode & CAMEL_STREAM_FS_READ) && !(mode & CAMEL_STREAM_FS_WRITE) ) if (v == -1) return NULL; - fd = open (name->str, flags); + fd = open (name->str, flags, 0600); if (fd==-1) { CAMEL_LOG (FULL_DEBUG, "CamelStreamFs::new_with_name can not obtain fd for file \"%s\"\n", name->str); CAMEL_LOG (FULL_DEBUG, " Full error text is : %s\n", strerror(errno)); |