From: Eric Sandeen Date: Mon, 3 Mar 2014 01:19:24 +0000 (+1100) Subject: xfs_metadump: include F in getopts string X-Git-Tag: v3.2.0-rc1~51 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=4e11214c25c0c669591b3d93671531ade3535834;p=thirdparty%2Fxfsprogs-dev.git xfs_metadump: include F in getopts string I added an F case, but didn't add it to the bash getopts string last go-round. /usr/sbin/xfs_metadump: illegal option -- F I sure thought I tested this, I'm not sure how it got lost. Reported-by: Boris Ranto Signed-off-by: Eric Sandeen Signed-off-by: Dave Chinner --- diff --git a/db/xfs_metadump.sh b/db/xfs_metadump.sh index 7ce7a6d56..a95d5a561 100755 --- a/db/xfs_metadump.sh +++ b/db/xfs_metadump.sh @@ -7,7 +7,7 @@ OPTS=" " DBOPTS=" " USAGE="Usage: xfs_metadump [-efFogwV] [-m max_extents] [-l logdev] source target" -while getopts "efgl:m:owV" c +while getopts "efgl:m:owFV" c do case $c in e) OPTS=$OPTS"-e ";;