MXS-2035: Fix available_when_donor

The parameter got broken by the previous change.
This commit is contained in:
Markus Mäkelä 2018-09-15 01:22:39 +03:00
parent b371e7ac9d
commit d6ce6e4289
No known key found for this signature in database
GPG Key ID: 72D48FCE664F7B19

View File

@ -281,7 +281,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;
}