]> git.sur5r.net Git - i3/i3/commitdiff
Don't ELOG ipc EOF
authorTony Crisci <tony@dubstepdish.com>
Sat, 7 Jun 2014 02:11:44 +0000 (22:11 -0400)
committerMichael Stapelberg <michael@stapelberg.de>
Sun, 8 Jun 2014 11:54:55 +0000 (13:54 +0200)
Receiving EOF from a client is not an error, but rather a standard way a
client may disconnect from the IPC. This should rather be logged from
a consumer of the libi3 ipc_recv_message() function as a normal client
disconnect event.

fixes #1252

libi3/ipc_recv_message.c

index 8d36700ad40a088fbdf95d2f8631b2ba3d293f59..cb4edd6732b956f91e24c1738b796d5263a47c97 100644 (file)
@@ -41,7 +41,6 @@ int ipc_recv_message(int sockfd, uint32_t *message_type,
         if (n == -1)
             return -1;
         if (n == 0) {
-            ELOG("IPC: received EOF instead of reply\n");
             return -2;
         }