From: Stephan Bosch Date: Fri, 9 Feb 2018 23:00:17 +0000 (+0100) Subject: lib-http: test-http-payload: Ignore SIGPIPE. X-Git-Tag: 2.3.9~1799 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=92ee269b5ef4f1f6082362042ff59071c4a4b81d;p=thirdparty%2Fdovecot%2Fcore.git lib-http: test-http-payload: Ignore SIGPIPE. --- diff --git a/src/lib-http/test-http-payload.c b/src/lib-http/test-http-payload.c index 0cadca27f1..6e36f5bc1d 100644 --- a/src/lib-http/test-http-payload.c +++ b/src/lib-http/test-http-payload.c @@ -1852,6 +1852,7 @@ int main(int argc, char *argv[]) atexit(test_atexit); (void)signal(SIGCHLD, SIG_IGN); + (void)signal(SIGPIPE, SIG_IGN); (void)signal(SIGTERM, test_signal_handler); (void)signal(SIGQUIT, test_signal_handler); (void)signal(SIGINT, test_signal_handler);