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

This commit is contained in:
jani@rhols221.adsl.netsonic.fi 2002-11-12 11:39:52 +02:00
parent 47a164c156
commit cacd611a0c

View File

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