From: Chuck Lever Date: Fri, 10 Aug 2007 22:19:50 +0000 (-0400) Subject: mount.nfs: Replace a "return 0; " that should be an "exit(0); " X-Git-Tag: nfs-utils-1-1-1~80 X-Git-Url: https://git.decadent.org.uk/gitweb/?p=nfs-utils.git;a=commitdiff_plain;h=3a1a8015fbc5e64d590bd447a8e1a3c16b26b82f;hp=1e892795cb2b482e5f6b8476227e187b419a6232 mount.nfs: Replace a "return 0; " that should be an "exit(0); " Signed-off-by: Chuck Lever Signed-off-by: Neil Brown --- 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;