1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-07 00:04:31 +03:00

Merge with 4.0.14

This commit is contained in:
monty@mashka.mysql.fi
2003-08-11 22:44:43 +03:00
363 changed files with 13819 additions and 2895 deletions

View File

@@ -88,12 +88,12 @@ fi
# The following test is to make this script compatible with the 4.0 where
# the first argument was the password
if test -z $password
if test -z "$password"
then
password=`echo $args | sed -e 's/ *//g'`
fi
if test -z $password ; then
if test -z "$password" ; then
cmd="$bindir/mysql -f --user=$user --host=$host mysql"
else
cmd="$bindir/mysql -f --user=$user --password=$password --host=$host mysql"