summaryrefslogtreecommitdiff
path: root/source3/client
diff options
context:
space:
mode:
authorAlexander Bokovoy <ab@samba.org>2003-02-13 16:29:12 +0000
committerAlexander Bokovoy <ab@samba.org>2003-02-13 16:29:12 +0000
commitff1db7b4f7f62f14cbea3520c62ed5b097aa1e99 (patch)
treef91ec84e1c8b9c3503a797f6de17e9beb65cedb3 /source3/client
parentf4092b90bf4268a6499188e22000aec8c91b49ad (diff)
downloadsamba-ff1db7b4f7f62f14cbea3520c62ed5b097aa1e99.tar.gz
samba-ff1db7b4f7f62f14cbea3520c62ed5b097aa1e99.tar.bz2
samba-ff1db7b4f7f62f14cbea3520c62ed5b097aa1e99.zip
Fix typo in WIFSIGNALED (as per Waider's report)
(This used to be commit 4463ffeed91163314d2d903a271b29e87edaadcf)
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 b9d8e7be61..508521bedc 100644
--- a/source3/client/smbmount.c
+++ b/source3/client/smbmount.c
@@ -507,7 +507,7 @@ static void init_mount(void)
fprintf(stderr,"smbmnt failed: %d\n", WEXITSTATUS(status));
/* FIXME: do some proper error handling */
exit(1);
- } else if (WIFSIGNALLED(status)) {
+ } else if (WIFSIGNALED(status)) {
fprintf(stderr, "smbmnt killed by signal %d\n", WTERMSIG(status));
exit(1);
}