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
This commit is contained in:
Christian Brueffer 2015-01-12 19:26:31 +00:00
parent 393c4bb1ba
commit 8b36eba6c0
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=277085

View File

@ -191,7 +191,7 @@ ffs_parse_opts(const char *option, fsinfo_t *fsopts)
"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" },