ignore SIGPIPE

This commit is contained in:
ps 2011-09-29 20:37:53 +00:00
父節點 0b23a7eee5
當前提交 c3d00e50f6
共有 1 個檔案被更改,包括 1 行新增0 行删除

查看文件

@ -120,6 +120,7 @@ main
signal(SIGTERM,exit_requested);
signal(SIGINT,exit_requested);
signal(SIGCHLD,SIG_IGN);
signal(SIGPIPE,SIG_IGN);
//we have to create the server socket BEFORE chrooting, because if we don't,
//SSL cannot initialize because it's missing libz