Date: Sat, 23 Jun 2012 19:46:08 +0000 (UTC) From: Edward Tomasz Napierala <trasz@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-9@freebsd.org Subject: svn commit: r237505 - stable/9/sbin/newfs Message-ID: <201206231946.q5NJk8Jp061197@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: trasz Date: Sat Jun 23 19:46:07 2012 New Revision: 237505 URL: http://svn.freebsd.org/changeset/base/237505 Log: Make newfs(8) display "super-block backups (for fsck_ffs -b #)" instead of super-block backups (for fsck -b #), since fsck(8) doesn't accept the "-b" option; only fsck_ffs(8) does. PR: bin/82720 MFC after: 1 week Modified: stable/9/sbin/newfs/mkfs.c Modified: stable/9/sbin/newfs/mkfs.c ============================================================================== --- stable/9/sbin/newfs/mkfs.c Sat Jun 23 19:42:06 2012 (r237504) +++ stable/9/sbin/newfs/mkfs.c Sat Jun 23 19:46:07 2012 (r237505) @@ -539,7 +539,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(); /*
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201206231946.q5NJk8Jp061197>