diff options
author | Monty <monty@mariadb.org> | 2019-06-06 16:38:03 +0300 |
---|---|---|
committer | Monty <monty@mariadb.org> | 2019-06-06 16:38:03 +0300 |
commit | dfe7968c6ed55b32916b7b84a54abdc66debef4c (patch) | |
tree | 5a621cc2b20d14b733caaf068b32706e0b6a686e /mysql-test/lib | |
parent | b83aff56f10caaa24a11d2fa9d17fd7930d5de25 (diff) | |
download | mariadb-git-dfe7968c6ed55b32916b7b84a54abdc66debef4c.tar.gz |
Fixed typo in Config.pgm
Diffstat (limited to 'mysql-test/lib')
-rw-r--r-- | mysql-test/lib/My/Config.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/lib/My/Config.pm b/mysql-test/lib/My/Config.pm index e148fa1dcb7..ecc0830c3df 100644 --- a/mysql-test/lib/My/Config.pm +++ b/mysql-test/lib/My/Config.pm @@ -369,7 +369,7 @@ sub insert { $tmp_option =~ s/_/-/g; # If the option is an option that one can specify many times, always add - $if_not_exist= 1 if (@multipart_options{$tmp_option}); + $if_not_exist= 1 if ($multipart_options{$tmp_option}); # Add the option to the group $group->insert($option, $value, $if_not_exist); |