diff options
author | unknown <monty@narttu.mysql.fi> | 2003-10-07 15:44:31 +0300 |
---|---|---|
committer | unknown <monty@narttu.mysql.fi> | 2003-10-07 15:44:31 +0300 |
commit | c7fd510a4191eb85890dddc235852f3b8a98362d (patch) | |
tree | 1d9214ae1674384fb38bf9c07e2776c1206842ee /scripts/mysql_install_db.sh | |
parent | bc4a57f01ace40255de2f8d7307254fd1d1d5bfa (diff) | |
download | mariadb-git-c7fd510a4191eb85890dddc235852f3b8a98362d.tar.gz |
Simple cleanups
client/mysqlbinlog.cc:
Add default handling to mysqlbinlog
mysql-test/mysql-test-run.sh:
Cleanup of mysqldump/mysqlbinlog argument handling
scripts/Makefile.am:
Remove duplicate
scripts/mysql_install_db.sh:
Change -eq to =
Diffstat (limited to 'scripts/mysql_install_db.sh')
-rw-r--r-- | scripts/mysql_install_db.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/mysql_install_db.sh b/scripts/mysql_install_db.sh index d66c33c16b1..5a6b11fb19b 100644 --- a/scripts/mysql_install_db.sh +++ b/scripts/mysql_install_db.sh @@ -136,7 +136,7 @@ then fi fi -if test "$ip_only" -eq 1 +if test "$ip_only" ="1" then ip=`echo "$resolved" | awk '/ /{print $6}'` hostname=$ip |