From ff1db7b4f7f62f14cbea3520c62ed5b097aa1e99 Mon Sep 17 00:00:00 2001 From: Alexander Bokovoy Date: Thu, 13 Feb 2003 16:29:12 +0000 Subject: Fix typo in WIFSIGNALED (as per Waider's report) (This used to be commit 4463ffeed91163314d2d903a271b29e87edaadcf) --- source3/client/smbmount.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3/client') 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); } -- cgit