Date: Wed, 17 Jun 2009 09:29:19 +0000 (UTC) From: Andriy Gapon <avg@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-7@freebsd.org Subject: svn commit: r194338 - stable/7/sbin/fsck_msdosfs Message-ID: <200906170929.n5H9TJQ0068728@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: avg Date: Wed Jun 17 09:29:18 2009 New Revision: 194338 URL: http://svn.freebsd.org/changeset/base/194338 Log: MFC r193943: fsck_msdosfs: accept no-op -C option Modified: stable/7/sbin/fsck_msdosfs/ (props changed) stable/7/sbin/fsck_msdosfs/fsck_msdosfs.8 stable/7/sbin/fsck_msdosfs/main.c Modified: stable/7/sbin/fsck_msdosfs/fsck_msdosfs.8 ============================================================================== --- stable/7/sbin/fsck_msdosfs/fsck_msdosfs.8 Wed Jun 17 07:11:38 2009 (r194337) +++ stable/7/sbin/fsck_msdosfs/fsck_msdosfs.8 Wed Jun 17 09:29:18 2009 (r194338) @@ -32,7 +32,7 @@ .\" .\" $FreeBSD$ .\" -.Dd August 13, 1995 +.Dd June 4, 2009 .Dt FSCK_MSDOSFS 8 .Os .Sh NAME @@ -41,10 +41,10 @@ .Sh SYNOPSIS .Nm .Fl p -.Op Fl f +.Op Fl Cf .Ar filesystem ... .Nm -.Op Fl ny +.Op Fl Cny .Ar filesystem ... .Sh DESCRIPTION The @@ -80,6 +80,10 @@ making any changes. .Pp The options are as follows: .Bl -tag -width indent +.It Fl C +Compatibility with the corresponding +.Xr fsck 8 +option (skip check if clean), defined to no-op. .It Fl F Compatibility with the wrapper .Xr fsck 8 Modified: stable/7/sbin/fsck_msdosfs/main.c ============================================================================== --- stable/7/sbin/fsck_msdosfs/main.c Wed Jun 17 07:11:38 2009 (r194337) +++ stable/7/sbin/fsck_msdosfs/main.c Wed Jun 17 09:29:18 2009 (r194338) @@ -74,8 +74,10 @@ main(int argc, char **argv) int ch; skipclean = 1; - while ((ch = getopt(argc, argv, "fFnpy")) != -1) { + while ((ch = getopt(argc, argv, "CfFnpy")) != -1) { switch (ch) { + case 'C': /* for fsck_ffs compatibility */ + break; case 'f': skipclean = 0; break;
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200906170929.n5H9TJQ0068728>