summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGerald Carter <jerry@samba.org>2003-01-15 23:11:57 +0000
committerGerald Carter <jerry@samba.org>2003-01-15 23:11:57 +0000
commitdc6cda595179b8c53f15d4bc92faf782f3e2d482 (patch)
tree13e849f8977dda565602610a587d31872a0d223b
parent1df9f3e259b5ba190de7a123a79b3afcd2bfe489 (diff)
downloadsamba-dc6cda595179b8c53f15d4bc92faf782f3e2d482.tar.gz
samba-dc6cda595179b8c53f15d4bc92faf782f3e2d482.tar.xz
samba-dc6cda595179b8c53f15d4bc92faf782f3e2d482.zip
s/WIFSIGNALLED/WIFSIGNALED/g
-rw-r--r--source/client/smbmount.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/client/smbmount.c b/source/client/smbmount.c
index 54970f70309..2c70f3ff50a 100644
--- a/source/client/smbmount.c
+++ b/source/client/smbmount.c
@@ -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));