summaryrefslogtreecommitdiffstats
path: root/stream.c
diff options
context:
space:
mode:
Diffstat (limited to 'stream.c')
-rw-r--r--stream.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/stream.c b/stream.c
index 8856d9b8..a8177ff3 100644
--- a/stream.c
+++ b/stream.c
@@ -1089,7 +1089,7 @@ static FILE *w_fopen_mode(const wchar_t *wname, const wchar_t *mode,
if (m.notrunc) {
char *name = utf8_dup_to(wname);
int flags = (m.read ? O_RDWR : O_WRONLY) | O_CREAT;
- int fd = open(name, flags, 0777);
+ int fd = open(name, flags, 0666);
free(name);
if (fd < 0)
return NULL;