diff options
author | Marius Halden <marius.h@lden.org> | 2015-11-27 03:30:04 +0100 |
---|---|---|
committer | Marius Halden <marius.h@lden.org> | 2015-11-27 03:30:04 +0100 |
commit | 767cce5ff367d19e6e32e6d6b2637da8656e67ae (patch) | |
tree | 3b9c6e2848f082792bf20c06b2e32958577207a2 /scan.c | |
parent | f1c5678d757e4b945ad044042897bd5ee340900f (diff) | |
download | svcmon-767cce5ff367d19e6e32e6d6b2637da8656e67ae.tar.gz svcmon-767cce5ff367d19e6e32e6d6b2637da8656e67ae.tar.bz2 svcmon-767cce5ff367d19e6e32e6d6b2637da8656e67ae.tar.xz |
Don't ignore SIGCHLD
Diffstat (limited to 'scan.c')
-rw-r--r-- | scan.c | 2 |
1 files changed, 0 insertions, 2 deletions
@@ -377,8 +377,6 @@ setup_signals() memset(&act, 0, sizeof(act)); act.sa_handler = SIG_IGN; - if (sigaction(SIGCHLD, &act, NULL) == -1) - err(1, "sigaction()"); if (sigaction(SIGHUP, &act, NULL) == -1) err(1, "sigaction()"); if (sigaction(SIGINT, &act, NULL) == -1) |