Merge branch '2.2' into develop

This commit is contained in:
Johan Wikman
2018-09-17 13:02:53 +03:00
2 changed files with 9 additions and 4 deletions

View File

@ -352,7 +352,7 @@ static bool using_xtrabackup(MXS_MONITORED_SERVER* database, const char* server_
while ((row = mysql_fetch_row(result)))
{
if (row[1] && (strcmp(row[1], "xtrabackup") == 0 || strcmp(row[1], "mariabackup")))
if (row[1] && (strcmp(row[1], "xtrabackup") == 0 || strcmp(row[1], "mariabackup") == 0))
{
rval = true;
}