From: Tony Crisci Date: Sat, 7 Jun 2014 02:11:44 +0000 (-0400) Subject: Don't ELOG ipc EOF X-Git-Tag: 4.8~26 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=7e564713f94341b6edf160c9fbc6fe1f0b578bf2;p=i3%2Fi3 Don't ELOG ipc EOF 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 --- diff --git a/libi3/ipc_recv_message.c b/libi3/ipc_recv_message.c index 8d36700a..cb4edd67 100644 --- a/libi3/ipc_recv_message.c +++ b/libi3/ipc_recv_message.c @@ -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; }