diff options
Diffstat (limited to 'source3/client/smbmount.c')
-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 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)); |