Fixed a problem with reading some innodb options that may contain semicolin.

This commit is contained in:
unknown 2002-11-12 11:39:52 +02:00
parent b18dec6110
commit 3559b2f158

View File

@ -4,7 +4,7 @@ use Getopt::Long;
use POSIX qw(strftime); use POSIX qw(strftime);
$|=1; $|=1;
$VER="2.4"; $VER="2.5";
$opt_config_file = undef(); $opt_config_file = undef();
$opt_example = 0; $opt_example = 0;
@ -212,6 +212,7 @@ sub start_mysqlds()
} }
else else
{ {
$options[$j]=~ s/;/\\;/g;
$tmp.= " $options[$j]"; $tmp.= " $options[$j]";
} }
} }