From a0f9dede90f8896a569e83278a7bed1be0af1f01 Mon Sep 17 00:00:00 2001 From: dimitri staessens Date: Sun, 19 Jun 2016 16:03:40 +0200 Subject: irmd: fix erroneus SIGPIPE log The IRMd would always report a SIGPIPE because of a missing break statement. Close #9 --- src/irmd/main.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/irmd/main.c b/src/irmd/main.c index 3221edee..d9fa5990 100644 --- a/src/irmd/main.c +++ b/src/irmd/main.c @@ -1333,6 +1333,7 @@ void irmd_sig_handler(int sig, siginfo_t * info, void * c) rw_lock_unlock(&instance->state_lock); + break; case SIGPIPE: LOG_DBG("Ignoring SIGPIPE."); default: -- cgit v1.2.3