Module Name:    src
Committed By:   bouyer
Date:           Sat Sep  5 11:45:06 UTC 2009

Modified Files:
        src/sbin/fsck_ext2fs [netbsd-5]: main.c

Log Message:
Pull up following revision(s) (requested by tron in ticket #914):
        sbin/fsck_ext2fs/main.c: revision 1.33
Ignore the "-P" option as intended to make this work with e.g.
"fsck_flags=3D-pP" in "/etc/rc.conf".
Patch supplied by Pierre Pronchery in PR bin/41490.


To generate a diff of this commit:
cvs rdiff -u -r1.32 -r1.32.2.1 src/sbin/fsck_ext2fs/main.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/fsck_ext2fs/main.c
diff -u src/sbin/fsck_ext2fs/main.c:1.32 src/sbin/fsck_ext2fs/main.c:1.32.2.1
--- src/sbin/fsck_ext2fs/main.c:1.32	Sun Oct 12 20:49:43 2008
+++ src/sbin/fsck_ext2fs/main.c	Sat Sep  5 11:45:06 2009
@@ -1,4 +1,4 @@
-/*	$NetBSD: main.c,v 1.32 2008/10/12 20:49:43 wiz Exp $	*/
+/*	$NetBSD: main.c,v 1.32.2.1 2009/09/05 11:45:06 bouyer Exp $	*/
 
 /*
  * Copyright (c) 1980, 1986, 1993
@@ -68,7 +68,7 @@
 #if 0
 static char sccsid[] = "@(#)main.c	8.2 (Berkeley) 1/23/94";
 #else
-__RCSID("$NetBSD: main.c,v 1.32 2008/10/12 20:49:43 wiz Exp $");
+__RCSID("$NetBSD: main.c,v 1.32.2.1 2009/09/05 11:45:06 bouyer Exp $");
 #endif
 #endif /* not lint */
 
@@ -107,7 +107,7 @@
 
 	sync();
 	skipclean = 1;
-	while ((ch = getopt(argc, argv, "b:dfm:npqUy")) != -1) {
+	while ((ch = getopt(argc, argv, "b:dfm:npPqUy")) != -1) {
 		switch (ch) {
 		case 'b':
 			skipclean = 0;

Reply via email to