Skip to content

Commit

Permalink
lib-smtp: test-smtp-payload: Ignore SIGPIPE.
Browse files Browse the repository at this point in the history
  • Loading branch information
stephanbosch committed May 25, 2018
1 parent 7bb571d commit 7f4e20f
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/lib-smtp/test-smtp-payload.c
Expand Up @@ -960,6 +960,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 7f4e20f

Please sign in to comment.