Skip to content

Commit

Permalink
fix SIGPIPE handling
Browse files Browse the repository at this point in the history
  • Loading branch information
luciang committed Nov 13, 2007
1 parent 3da6e8d commit 24210cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.c
Expand Up @@ -178,7 +178,7 @@ int main(int argc, char const *const * argv, char const *const * engv)
#endif
apr_signal(SIGINT, sig_func);
#ifdef SIGPIPE
signal(SIGPIPE, SIG_IGN);
apr_signal(SIGPIPE, SIG_IGN);
#endif
syscall_helpers_init();

Expand Down

0 comments on commit 24210cf

Please sign in to comment.