diff options
author | rantal <rantal5030@gmail.com> | 2019-09-16 18:56:29 +0300 |
---|---|---|
committer | Anel Husakovic <anel@mariadb.org> | 2019-09-24 01:46:39 -0700 |
commit | a39c4b5f9f7f4d2766f1ddb9487de27259e804a1 (patch) | |
tree | 264d08d3eb798432eefee8445ed3793518f8f458 /scripts | |
parent | b44171428ab2ea25db82f7cd27349e67812e4921 (diff) | |
download | mariadb-git-a39c4b5f9f7f4d2766f1ddb9487de27259e804a1.tar.gz |
Update mysqld_multi.sh
`elseif` should be `elsif`
Closed #1388
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/mysqld_multi.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/mysqld_multi.sh b/scripts/mysqld_multi.sh index b8730e2624a..bdc03d305a3 100644 --- a/scripts/mysqld_multi.sh +++ b/scripts/mysqld_multi.sh @@ -349,7 +349,7 @@ sub start_mysqlds() $options[$j]= quote_shell_word($options[$j]); $tmp.= " $options[$j]"; } - elseif ("--defaults-group-suffix=" eq substr($options[$j], 0, 24)) + elsif ("--defaults-group-suffix=" eq substr($options[$j], 0, 24)) { $suffix_found= 1; } |