From f84f150acd91c3c1c74795155d8201f1f9285c74 Mon Sep 17 00:00:00 2001 From: Laurent Bercot Date: Fri, 5 Dec 2014 22:54:14 +0000 Subject: Bugfix: WTERMSIG, not WIFSIGNAL for 2nd argument to ./finish in s6-supervise --- src/supervision/s6-supervise.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/supervision') diff --git a/src/supervision/s6-supervise.c b/src/supervision/s6-supervise.c index f9a9872..aa53e33 100644 --- a/src/supervision/s6-supervise.c +++ b/src/supervision/s6-supervise.c @@ -247,7 +247,7 @@ static void tryfinish (int wstat, int islast) char *cargv[4] = { "finish", fmt0, fmt1, 0 } ; selfpipe_finish() ; fmt0[uint_fmt(fmt0, WIFSIGNALED(wstat) ? 255 : WEXITSTATUS(wstat))] = 0 ; - fmt1[uint_fmt(fmt1, WIFSIGNALED(wstat))] = 0 ; + fmt1[uint_fmt(fmt1, WTERMSIG(wstat))] = 0 ; if (flagsetsid) setsid() ; execve("./finish", cargv, (char *const *)environ) ; _exit(111) ; -- cgit v1.2.3