Module Name:    src
Committed By:   mlelstv
Date:           Mon Apr  9 15:50:20 UTC 2012

Modified Files:
        src/sbin/mount: mount.c

Log Message:
return exit code from mount_XXXX again


To generate a diff of this commit:
cvs rdiff -u -r1.95 -r1.96 src/sbin/mount/mount.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sbin/mount/mount.c
diff -u src/sbin/mount/mount.c:1.95 src/sbin/mount/mount.c:1.96
--- src/sbin/mount/mount.c:1.95	Sat Apr  7 04:13:06 2012
+++ src/sbin/mount/mount.c	Mon Apr  9 15:50:20 2012
@@ -1,4 +1,4 @@
-/*	$NetBSD: mount.c,v 1.95 2012/04/07 04:13:06 christos Exp $	*/
+/*	$NetBSD: mount.c,v 1.96 2012/04/09 15:50:20 mlelstv Exp $	*/
 
 /*
  * Copyright (c) 1980, 1989, 1993, 1994
@@ -39,7 +39,7 @@ __COPYRIGHT("@(#) Copyright (c) 1980, 19
 #if 0
 static char sccsid[] = "@(#)mount.c	8.25 (Berkeley) 5/8/95";
 #else
-__RCSID("$NetBSD: mount.c,v 1.95 2012/04/07 04:13:06 christos Exp $");
+__RCSID("$NetBSD: mount.c,v 1.96 2012/04/09 15:50:20 mlelstv Exp $");
 #endif
 #endif /* not lint */
 
@@ -325,7 +325,8 @@ out:
 	}
 #endif
 
-	return 0;
+	exit(rval);
+	/* NOTREACHED */
 }
 
 int

Reply via email to