diff options
author | sin <sin@2f30.org> | 2014-09-18 16:17:27 +0100 |
---|---|---|
committer | sin <sin@2f30.org> | 2014-09-18 16:17:27 +0100 |
commit | 12194aceff061d9fdb2c90cfeac9a9283569d5b0 (patch) | |
tree | 623e3cf2405851f1a6c17da59a320f29e7113ee6 /ratox.c | |
parent | d7557b13bc694df872e9fdf45bb7d9c32488bd2e (diff) |
Missed some more
Diffstat (limited to 'ratox.c')
-rw-r--r-- | ratox.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -561,7 +561,7 @@ localinit(void) perror("mkfifo"); exit(EXIT_FAILURE); } - r = open(gfiles[m].name, gfiles[m].flags); + r = open(gfiles[m].name, gfiles[m].flags, 0644); if (r < 0) { perror("open"); exit(EXIT_FAILURE); @@ -569,7 +569,7 @@ localinit(void) gslots[i].fd[m] = r; } else if (gfiles[m].type == OUT_F) { if (gslots[i].outtype == STATIC) { - r = open(gfiles[m].name, gfiles[m].flags); + r = open(gfiles[m].name, gfiles[m].flags, 0644); if (r < 0) { perror("open"); exit(EXIT_FAILURE); @@ -726,13 +726,13 @@ friendcreate(int32_t fid) perror("mkfifo"); exit(EXIT_FAILURE); } - r = open(ffiles[i].name, ffiles[i].flags); + r = open(ffiles[i].name, ffiles[i].flags, 0644); if (r < 0) { perror("open"); exit(EXIT_FAILURE); } } else if (ffiles[i].type == STATIC) { - r = open(ffiles[i].name, ffiles[i].flags); + r = open(ffiles[i].name, ffiles[i].flags, 0644); if (r < 0) { perror("open"); exit(EXIT_FAILURE); |