Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 12 Jan 2015 19:26:32 +0000 (UTC)
From:      Christian Brueffer <brueffer@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r277085 - head/usr.sbin/makefs
Message-ID:  <201501121926.t0CJQWHI087537@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: brueffer
Date: Mon Jan 12 19:26:31 2015
New Revision: 277085
URL: https://svnweb.freebsd.org/changeset/base/277085

Log:
  Fix a typo in the FFS maxbpg option, it was erroneously spelled maxbpf.
  
  The error exists in the NetBSD upstream version as well and will be reported back.
  
  PR:		196598
  Submitted by:	Dan McGregor
  MFC after:	1 week

Modified:
  head/usr.sbin/makefs/ffs.c

Modified: head/usr.sbin/makefs/ffs.c
==============================================================================
--- head/usr.sbin/makefs/ffs.c	Mon Jan 12 18:43:34 2015	(r277084)
+++ head/usr.sbin/makefs/ffs.c	Mon Jan 12 19:26:31 2015	(r277085)
@@ -191,7 +191,7 @@ ffs_parse_opts(const char *option, fsinf
 					"bytes per inode" },
 		{ "minfree",	&ffs_opts->minfree,	0,	99,
 					"minfree" },
-		{ "maxbpf",	&ffs_opts->maxbpg,	1,	INT_MAX,
+		{ "maxbpg",	&ffs_opts->maxbpg,	1,	INT_MAX,
 					"max blocks per file in a cg" },
 		{ "avgfilesize", &ffs_opts->avgfilesize,1,	INT_MAX,
 					"expected average file size" },



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201501121926.t0CJQWHI087537>