server/admin.c: Delete a redundant ignoring of `SIGPIPE'.
authorMark Wooding <mdw@distorted.org.uk>
Sat, 12 May 2018 10:38:08 +0000 (11:38 +0100)
committerMark Wooding <mdw@distorted.org.uk>
Thu, 14 Jun 2018 11:50:38 +0000 (12:50 +0100)
The real one is in `main' in `tripe.c'.

server/admin.c

index aafe0b9..46a7348 100644 (file)
@@ -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);