summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorsasha@mysql.sashanet.com <>2000-08-02 21:19:47 -0600
committersasha@mysql.sashanet.com <>2000-08-02 21:19:47 -0600
commit407d7bb8f3e3b53a2f6e3f04a1b7c236512f0cdd (patch)
tree0b20003204634924ad1c6737a4834120445a9911 /scripts
parent2ff140a6feddcebc4aabedcd140ffdf67752c485 (diff)
downloadmariadb-git-407d7bb8f3e3b53a2f6e3f04a1b7c236512f0cdd.tar.gz
Fixed the mess created when I did LOD branch on accident
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/safe_mysqld.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/safe_mysqld.sh b/scripts/safe_mysqld.sh
index a5ea4635ab9..1f481f07fed 100755
--- a/scripts/safe_mysqld.sh
+++ b/scripts/safe_mysqld.sh
@@ -21,7 +21,7 @@ esac
# Parse arguments to see if caller wants the pid_file somewhere else.
parse_arguments() {
- for arg; do
+ for arg in "$@"; do
case $arg in
--datadir=*) DATADIR=`echo "$arg" | sed -e "s;--datadir=;;"` ;;
--pid-file=*) pid_file=`echo "$arg" | sed -e "s;--pid-file=;;"` ;;