aboutsummaryrefslogtreecommitdiffstats
path: root/chapter07/functions.xml
diff options
context:
space:
mode:
authorGerard Beekmans <gerard@linuxfromscratch.org>2001-06-28 15:15:48 +0000
committerGerard Beekmans <gerard@linuxfromscratch.org>2001-06-28 15:15:48 +0000
commita2f729c2f9905d7a5f7a9f9b4d9eb85ed747f75d (patch)
tree3fc1dc6570e2727db26583059ab8ff8fa0ea3f40 /chapter07/functions.xml
parent38b592ad40cc4f9e9ca326b4a39d58a4a2c9a426 (diff)
changed $* into "$@" in the functions script
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@720 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter07/functions.xml')
-rw-r--r--chapter07/functions.xml4
1 files changed, 2 insertions, 2 deletions
diff --git a/chapter07/functions.xml b/chapter07/functions.xml
index 7222881cd..10b53f501 100644
--- a/chapter07/functions.xml
+++ b/chapter07/functions.xml
@@ -147,12 +147,12 @@ loadproc()
if [ ! -n "$pid" ]
then
#
-# Empty $pid variable means it's not running, so we run $* (all
+# Empty $pid variable means it's not running, so we run "$@" (all
# parameters giving to this function from the script) and then check the
# return value
#
- $*
+ "$@"
evaluate_retval
else
#