Browse Source

Fix a merge error in the parent commit

Fix an inadvertently inverted condition that caused
galera.galera_sst_mariabackup_table_options test failure.
pull/1079/head
Marko Mäkelä 7 years ago
parent
commit
23e4446adc
  1. 4
      extra/mariabackup/fil_cur.cc

4
extra/mariabackup/fil_cur.cc

@ -343,8 +343,8 @@ static bool page_is_corrupted(const byte *page, ulint page_no,
bool decrypted = false;
if (!space->crypt_data
|| space->crypt_data->type == CRYPT_SCHEME_UNENCRYPTED
|| fil_space_decrypt(space, tmp_frame, tmp_page,
&decrypted)) {
|| !fil_space_decrypt(space, tmp_frame, tmp_page,
&decrypted)) {
return true;
}

Loading…
Cancel
Save