X-Git-Url: https://git.distorted.org.uk/~mdw/sgt/putty/blobdiff_plain/962468d4b96c33869e9131eb42a0c784591f5884..9f123c4f2fa5d06500b39a5f8b0c38a39a6a5688:/unix/uxmisc.c 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);