From: Barry Naujok Date: Mon, 21 Jan 2008 15:09:18 +0000 (+0000) Subject: Make xfs_info handle mount points with spaces X-Git-Tag: v2.10.0~20 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=50b1dd46f1c472e1ed6e3762c9ed0f12675deafd;p=thirdparty%2Fxfsprogs-dev.git Make xfs_info handle mount points with spaces Merge of master-melb:xfs-cmds:30386a by kenmcd. Make xfs_info handle mount points with spaces --- diff --git a/growfs/xfs_info.sh b/growfs/xfs_info.sh index 4da68f96d..a9f603672 100755 --- a/growfs/xfs_info.sh +++ b/growfs/xfs_info.sh @@ -16,10 +16,10 @@ do ;; esac done -set -- extra $@ +set -- extra "$@" shift $OPTIND case $# in - 1) xfs_growfs -p xfs_info -n $OPTS $1 + 1) xfs_growfs -p xfs_info -n $OPTS "$1" status=$? ;; *) echo $USAGE 1>&2