1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

Correct the non working check for --skip-log-bin in "extra_opt"

This commit is contained in:
msvensson@pilot.mysql.com
2007-02-06 16:38:32 +01:00
parent 69510b7089
commit b6bd53aa9d

View File

@ -3601,7 +3601,7 @@ sub mysqld_arguments ($$$$$) {
}
# Check if "extra_opt" contains --skip-log-bin
my $skip_binlog= grep('--skip-log-bin', @$extra_opt);
my $skip_binlog= grep(/^--skip-log-bin/, @$extra_opt);
if ( $type eq 'master' )
{