diff options
author | dimitri staessens <dimitri.staessens@intec.ugent.be> | 2016-06-19 16:03:40 +0200 |
---|---|---|
committer | dimitri staessens <dimitri.staessens@intec.ugent.be> | 2016-06-19 16:04:49 +0200 |
commit | a0f9dede90f8896a569e83278a7bed1be0af1f01 (patch) | |
tree | f0d2184f77bbd4d5991fb2211b501ab1c9a9877c /src/irmd | |
parent | bdb4cb8b8f65336d2573476639ba7d79ec924130 (diff) | |
download | ouroboros-a0f9dede90f8896a569e83278a7bed1be0af1f01.tar.gz ouroboros-a0f9dede90f8896a569e83278a7bed1be0af1f01.zip |
irmd: fix erroneus SIGPIPE log
The IRMd would always report a SIGPIPE because of a missing break
statement.
Close #9
Diffstat (limited to 'src/irmd')
-rw-r--r-- | src/irmd/main.c | 1 |
1 files changed, 1 insertions, 0 deletions
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: |