summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorunknown <lenz@mysql.com>2003-08-01 10:09:23 +0200
committerunknown <lenz@mysql.com>2003-08-01 10:09:23 +0200
commit47a38b2fdbd3b1803b586496dc5700432d003d87 (patch)
tree19de104c2ec0f340b4a1ae5da5ed02e01833b39b /scripts
parent2d413d3c6f39c549b3bed1cba30ad5e788a72719 (diff)
downloadmariadb-git-47a38b2fdbd3b1803b586496dc5700432d003d87.tar.gz
- fixed BUG#968 ("test: argument expected" error) - thanks to Alex Kiernan
for the patch
Diffstat (limited to 'scripts')
-rw-r--r--scripts/mysql_fix_privilege_tables.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/mysql_fix_privilege_tables.sh b/scripts/mysql_fix_privilege_tables.sh
index 526b7ac91b3..7ba42e560bb 100644
--- a/scripts/mysql_fix_privilege_tables.sh
+++ b/scripts/mysql_fix_privilege_tables.sh
@@ -4,7 +4,7 @@ root_password="$1"
host="localhost"
user="root"
-if test -z $1 ; then
+if test -z "$1" ; then
cmd="@bindir@/mysql -f --user=$user --host=$host mysql"
else
root_password="$1"