From 52b6352b9f0a9a249880cd00394eee1ba8adfd8f Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Mon, 10 Jan 2005 20:57:46 +0000 Subject: fix quoting (#144634) --- rc.d/init.d/functions | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'rc.d/init.d/functions') diff --git a/rc.d/init.d/functions b/rc.d/init.d/functions index 6180722a..d0ce7aaf 100755 --- a/rc.d/init.d/functions +++ b/rc.d/init.d/functions @@ -147,7 +147,7 @@ daemon() { if [ -z "$user" ]; then $nice $* else - $nice runuser -s /bin/bash - $user -c \"$*\" + $nice runuser -s /bin/bash - $user -c "$*" fi [ "$?" -eq 0 ] && success $"$base startup" || failure $"$base startup" } -- cgit v1.2.1