summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorjani@a193-229-222-105.elisa-laajakaista.fi <>2005-09-30 14:02:31 +0300
committerjani@a193-229-222-105.elisa-laajakaista.fi <>2005-09-30 14:02:31 +0300
commitb97a77e824ed38fed28b82c7fb5afcb9fefc18b3 (patch)
tree0c31e593bbb0a34d3ca36490c2f1b9e14c1e1b8d /scripts
parent26b3ef7f444780ebe9dbb893f66c2dac5a408f7c (diff)
downloadmariadb-git-b97a77e824ed38fed28b82c7fb5afcb9fefc18b3.tar.gz
Fix for Bug#12629, "mysqld_multi produces syntax error".
Quote here is unneccessary as it should all be handled in quote_opt_arg().
Diffstat (limited to 'scripts')
-rw-r--r--scripts/mysqld_multi.sh3
1 files changed, 1 insertions, 2 deletions
diff --git a/scripts/mysqld_multi.sh b/scripts/mysqld_multi.sh
index 098cd894916..b2b85018d7a 100644
--- a/scripts/mysqld_multi.sh
+++ b/scripts/mysqld_multi.sh
@@ -4,7 +4,7 @@ use Getopt::Long;
use POSIX qw(strftime);
$|=1;
-$VER="2.14";
+$VER="2.15";
$opt_config_file = undef();
$opt_example = 0;
@@ -326,7 +326,6 @@ sub start_mysqlds()
}
else
{
- $options[$j]=~ s/;/\\;/g;
$options[$j]= quote_opt_arg($options[$j]);
$tmp.= " $options[$j]";
}