From: Tim Shimmin Date: Tue, 4 Dec 2001 00:27:12 +0000 (+0000) Subject: Ensure the awk passed in variables are quoted as they X-Git-Tag: v1.1.0~1183 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=964796bb9b43beebd2a2d13b1ce2ed2f50999a58;p=users%2Fhch%2Fxfstests-dev.git Ensure the awk passed in variables are quoted as they can contain spaces. Somehow this was not a problem on local testing machines. --- diff --git a/common.dump b/common.dump index d7475edd0..1148be454 100644 --- a/common.dump +++ b/common.dump @@ -1218,7 +1218,7 @@ _check_quota() $here/src/feature -G $SCRATCH_DEV && gquota=1 $AWK_PROG -v uquota=$uquota -v gquota=$gquota -v full=$seq.full \ - -v usermsg=$usermsg -v groupmsg=$groupmsg ' + -v usermsg="$usermsg" -v groupmsg="$groupmsg" ' $0 ~ groupmsg { print "Found group quota:", $0 >>full found_gquota = 1