s/WIFSIGNALLED/WIFSIGNALED/g
authorGerald Carter <jerry@samba.org>
Wed, 15 Jan 2003 23:11:45 +0000 (23:11 +0000)
committerGerald Carter <jerry@samba.org>
Wed, 15 Jan 2003 23:11:45 +0000 (23:11 +0000)
(This used to be commit 251585142bb5d13951160a76f65bb2bf32f209bf)

source3/client/smbmount.c

index 54970f70309cd82cb1c1549b9eb74e042a806cc5..2c70f3ff50a2ed7318c0ab0ea79003eaeaf4b885 100644 (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));