X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=blobdiff_plain;f=unix%2Fuxmisc.c;h=8441349b34319e7c6c6eb52627e8576ad8965d9c;hb=b73527e641fa09ff57ffd4d20ec4e4045039b890;hp=7d577f96d3e147fdb2f8e8a695101f589b3c9dbb;hpb=62cbc7dc0b33808dc8794c59f60971fbba97894b;p=PuTTY.git diff --git a/unix/uxmisc.c b/unix/uxmisc.c index 7d577f96..8441349b 100644 --- a/unix/uxmisc.c +++ b/unix/uxmisc.c @@ -174,7 +174,7 @@ FILE *f_open(const Filename *filename, char const *mode, int is_private) int fd; assert(mode[0] == 'w'); /* is_private is meaningless for read, and tricky for append */ - fd = open(filename->path, O_WRONLY | O_CREAT | O_TRUNC, 0700); + fd = open(filename->path, O_WRONLY | O_CREAT | O_TRUNC, 0600); if (fd < 0) return NULL; return fdopen(fd, mode);