From: Lachlan McIlroy Date: Fri, 20 Oct 2006 16:00:08 +0000 (+0000) Subject: Fix usage of "xfs_bmap -n [nnn]" X-Git-Tag: v2.9.0~31 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d2c397547c05ac39844f9ca9723c9340ade569bd;p=thirdparty%2Fxfsprogs-dev.git Fix usage of "xfs_bmap -n [nnn]" Merge of master-melb:xfs-cmds:27256a by kenmcd. Fix usage of "xfs_bmap -n [nnn]" --- diff --git a/io/xfs_bmap.sh b/io/xfs_bmap.sh index 0bed884bd..b4e7992bb 100755 --- a/io/xfs_bmap.sh +++ b/io/xfs_bmap.sh @@ -14,7 +14,7 @@ do a) OPTS=$OPTS" -a";; d) OPTS=$OPTS" -d";; l) OPTS=$OPTS" -l";; - n) OPTS=$OPTS" '-n "$OPTARG"'";; + n) OPTS=$OPTS" -n "$OPTARG;; p) OPTS=$OPTS" -p";; v) OPTS=$OPTS" -v";; V) VERSION=true;;