svn commit: r261655 - in head/sbin: growfs newfs

Christian Brueffer brueffer at FreeBSD.org
Sun Feb 9 14:28:48 UTC 2014


Author: brueffer
Date: Sun Feb  9 14:28:47 2014
New Revision: 261655
URL: http://svnweb.freebsd.org/changeset/base/261655

Log:
  Refer newfs and growfs users to fsck_ffs instead of
  fsck, the latter does not accept the referred to "-b" flag.
  
  This change was accidently committed directly to 9-STABLE in
  r237505.
  
  PR:		82720
  Submitted by:	David D.W. Downey
  MFC after:	1 week

Modified:
  head/sbin/growfs/growfs.c
  head/sbin/newfs/mkfs.c

Modified: head/sbin/growfs/growfs.c
==============================================================================
--- head/sbin/growfs/growfs.c	Sun Feb  9 14:02:39 2014	(r261654)
+++ head/sbin/growfs/growfs.c	Sun Feb  9 14:28:47 2014	(r261655)
@@ -201,7 +201,7 @@ growfs(int fsi, int fso, unsigned int Nf
 	 * Now build the cylinders group blocks and
 	 * then print out indices of cylinder groups.
 	 */
-	printf("super-block backups (for fsck -b #) at:\n");
+	printf("super-block backups (for fsck_ffs -b #) at:\n");
 	i = 0;
 	width = charsperline();
 

Modified: head/sbin/newfs/mkfs.c
==============================================================================
--- head/sbin/newfs/mkfs.c	Sun Feb  9 14:02:39 2014	(r261654)
+++ head/sbin/newfs/mkfs.c	Sun Feb  9 14:28:47 2014	(r261655)
@@ -544,7 +544,7 @@ restart:
 	 * Now build the cylinders group blocks and
 	 * then print out indices of cylinder groups.
 	 */
-	printf("super-block backups (for fsck -b #) at:\n");
+	printf("super-block backups (for fsck_ffs -b #) at:\n");
 	i = 0;
 	width = charsperline();
 	/*


More information about the svn-src-head mailing list