summaryrefslogtreecommitdiff
path: root/source3/client
diff options
context:
space:
mode:
authorGerald Carter <jerry@samba.org>2003-01-15 23:11:45 +0000
committerGerald Carter <jerry@samba.org>2003-01-15 23:11:45 +0000
commit523e406daf61db2a4203b27ffb8607e2b9d1061a (patch)
treecb9370d5a08f76a66770cf0ed2c19ad7dfdb3e02 /source3/client
parent34533c7a1c46409833908233e554c0cc25f6ee6e (diff)
downloadsamba-523e406daf61db2a4203b27ffb8607e2b9d1061a.tar.gz
samba-523e406daf61db2a4203b27ffb8607e2b9d1061a.tar.bz2
samba-523e406daf61db2a4203b27ffb8607e2b9d1061a.zip
s/WIFSIGNALLED/WIFSIGNALED/g
(This used to be commit 251585142bb5d13951160a76f65bb2bf32f209bf)
Diffstat (limited to 'source3/client')
-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));