diff options
author | Alexander Bokovoy <ab@samba.org> | 2003-02-13 16:29:12 +0000 |
---|---|---|
committer | Alexander Bokovoy <ab@samba.org> | 2003-02-13 16:29:12 +0000 |
commit | ff1db7b4f7f62f14cbea3520c62ed5b097aa1e99 (patch) | |
tree | f91ec84e1c8b9c3503a797f6de17e9beb65cedb3 /source3 | |
parent | f4092b90bf4268a6499188e22000aec8c91b49ad (diff) | |
download | samba-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')
-rw-r--r-- | source3/client/smbmount.c | 2 |
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); } |