summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ratox.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ratox.c b/ratox.c
index bdcdbcf..0f816d7 100644
--- a/ratox.c
+++ b/ratox.c
@@ -339,7 +339,7 @@ cbfriendrequest(Tox *m, const uint8_t *id, const uint8_t *data, uint16_t len, vo
r = mkfifoat(gslots[REQUEST].fd[OUT], req->idstr, 0644);
if (r < 0 && errno != EEXIST)
eprintf("mkfifoat %s:", req->idstr);
- r = openat(gslots[REQUEST].fd[OUT], req->idstr, O_RDWR | O_NONBLOCK);
+ r = openat(gslots[REQUEST].fd[OUT], req->idstr, O_RDONLY | O_NONBLOCK);
if (r < 0)
eprintf("openat %s:", req->idstr);
req->fd = r;