summaryrefslogtreecommitdiff
path: root/source3/client/smbmount.c
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
commitd7ed1e1362587d8b472f03db0781c37dff1b72af (patch)
tree069cd729d58275c6dffb8caaf6393ea9ff2d40b6 /source3/client/smbmount.c
parent1c9aee859967ed22315a3f722440bc449ecf729e (diff)
downloadsamba-d7ed1e1362587d8b472f03db0781c37dff1b72af.tar.gz
samba-d7ed1e1362587d8b472f03db0781c37dff1b72af.tar.bz2
samba-d7ed1e1362587d8b472f03db0781c37dff1b72af.zip
s/WIFSIGNALLED/WIFSIGNALED/g
(This used to be commit dc6cda595179b8c53f15d4bc92faf782f3e2d482)
Diffstat (limited to 'source3/client/smbmount.c')
-rw-r--r--source3/client/smbmount.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/client/smbmount.c b/source3/client/smbmount.c
index 54970f7030..2c70f3ff50 100644
--- a/source3/client/smbmount.c
+++ b/source3/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));