Commit 26e7a74f authored by unknown's avatar unknown

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

parent 37c9d272
......@@ -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]";
}
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment