summaryrefslogtreecommitdiffhomepage
path: root/svr-main.c
diff options
context:
space:
mode:
Diffstat (limited to 'svr-main.c')
-rw-r--r--svr-main.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/svr-main.c b/svr-main.c
index d3fa9af..ff3691f 100644
--- a/svr-main.c
+++ b/svr-main.c
@@ -370,6 +370,7 @@ static void commonsetup() {
/* catch and reap zombie children */
sa_chld.sa_handler = sigchld_handler;
sa_chld.sa_flags = SA_NOCLDSTOP;
+ sa_chld.sa_mask = 0;
if (sigaction(SIGCHLD, &sa_chld, NULL) < 0) {
dropbear_exit("signal() error");
}