From 5277240d87052ec70a78be3f1a7f026796f2ada4 Mon Sep 17 00:00:00 2001 From: Kefu Chai Date: Wed, 25 Oct 2017 10:19:14 +0800 Subject: [PATCH] vstart.sh: should quote the parameters to get them quoted Signed-off-by: Kefu Chai --- src/vstart.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/vstart.sh b/src/vstart.sh index a0db91523c3..ac5f1907f85 100755 --- a/src/vstart.sh +++ b/src/vstart.sh @@ -378,12 +378,12 @@ quoted_print() { } prunb() { - quoted_print $* '&' + quoted_print "$@" '&' "$@" & } prun() { - quoted_print $* + quoted_print "$@" "$@" } -- 2.39.5