Skip to content

Commit

Permalink
lib-http: test-http-payload: Ignore SIGPIPE.
Browse files Browse the repository at this point in the history
  • Loading branch information
stephanbosch authored and villesavolainen committed Feb 6, 2019
1 parent 5819d77 commit 754d79d
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/lib-http/test-http-payload.c
Expand Up @@ -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);
Expand Down

0 comments on commit 754d79d

Please sign in to comment.