tNo need to open for writing - ratox - FIFO based tox client
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) commit 2ad4bbe2388e8366ee001b7324b259a56d91cede
 (DIR) parent d56dae7f6797d3079f0d2a58d5c2c0ee8a5ec5ac
 (HTM) Author: sin <sin@2f30.org>
       Date:   Fri, 26 Sep 2014 17:03:08 +0100
       
       No need to open for writing
       
       Diffstat:
         M ratox.c                             |       2 +-
       
       1 file changed, 1 insertion(+), 1 deletion(-)
       ---
 (DIR) diff --git a/ratox.c b/ratox.c
       t@@ -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;