From: Mark Wooding Date: Sat, 12 May 2018 10:38:08 +0000 (+0100) Subject: server/admin.c: Delete a redundant ignoring of `SIGPIPE'. X-Git-Tag: 1.5.0~58 X-Git-Url: https://git.distorted.org.uk/~mdw/tripe/commitdiff_plain/b8317630c30c6c5e92237daf66acbfca6398ccc9 server/admin.c: Delete a redundant ignoring of `SIGPIPE'. The real one is in `main' in `tripe.c'. --- diff --git a/server/admin.c b/server/admin.c index aafe0b9c..46a7348a 100644 --- a/server/admin.c +++ b/server/admin.c @@ -2361,7 +2361,6 @@ again: sig_add(&s_term, SIGTERM, a_sigdie, 0); sig_add(&s_hup, SIGHUP, a_sighup, 0); - signal(SIGPIPE, SIG_IGN); sigaction(SIGINT, 0, &sa); if (sa.sa_handler != SIG_IGN) sig_add(&s_int, SIGINT, a_sigdie, 0);