summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLaurent Bercot <ska-skaware@skarnet.org>2021-08-04 13:52:15 +0000
committerLaurent Bercot <ska@appnovation.com>2021-08-04 13:52:15 +0000
commita360580b002baccad44d77ecf04606e721eee352 (patch)
tree722e11ac6f454373b52e85038d8a8745a3ddc2ab
parent5eced38e18908d83ec575b2d6717ca56f2f4e94c (diff)
downloadexecline-a360580b002baccad44d77ecf04606e721eee352.tar.xz
Fix sig_catch() interface
Signed-off-by: Laurent Bercot <ska@appnovation.com>
-rw-r--r--src/execline/forstdin.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/execline/forstdin.c b/src/execline/forstdin.c
index f89ce90..6d98d37 100644
--- a/src/execline/forstdin.c
+++ b/src/execline/forstdin.c
@@ -92,7 +92,7 @@ int main (int argc, char const **argv)
if (pids.s)
{
- if (sig_catch(SIGCHLD, &parallel_sigchld_handler) < 0)
+ if (!sig_catch(SIGCHLD, &parallel_sigchld_handler))
strerr_diefu1sys(111, "install SIGCHLD handler") ;
}
for (;;)