From 3a1a8015fbc5e64d590bd447a8e1a3c16b26b82f Mon Sep 17 00:00:00 2001 From: Chuck Lever Date: Fri, 10 Aug 2007 18:19:50 -0400 Subject: [PATCH 1/1] mount.nfs: Replace a "return 0; " that should be an "exit(0); " Signed-off-by: Chuck Lever Signed-off-by: Neil Brown --- utils/mount/mount.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/mount/mount.c b/utils/mount/mount.c index 94435c8..a6e1685 100644 --- a/utils/mount/mount.c +++ b/utils/mount/mount.c @@ -431,7 +431,7 @@ int main(int argc, char *argv[]) break; case 'V': printf("%s: ("PACKAGE_STRING")\n", progname); - return 0; + exit(0); case 'w': flags &= ~MS_RDONLY; break; -- 2.39.2