ratox

FIFO based tox client
git clone git://git.2f30.org/ratox
Log | Files | Refs | README | LICENSE

commit 12194aceff061d9fdb2c90cfeac9a9283569d5b0
parent d7557b13bc694df872e9fdf45bb7d9c32488bd2e
Author: sin <sin@2f30.org>
Date:   Thu, 18 Sep 2014 16:17:27 +0100

Missed some more

Diffstat:
Mratox.c | 8++++----
1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/ratox.c b/ratox.c @@ -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);