1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-24 21:34:56 +03:00

s/WIFSIGNALLED/WIFSIGNALED/g

(This used to be commit 251585142b)
This commit is contained in:
Gerald Carter 2003-01-15 23:11:45 +00:00
parent 34533c7a1c
commit 523e406daf

View File

@ -80,7 +80,7 @@ static void daemonize(void)
}
/* If we get here - the child exited with some error status */
if (WIFSIGNALLED(status))
if (WIFSIGNALED(status))
exit(128 + WTERMSIG(status));
else
exit(WEXITSTATUS(status));