Commit 23e4446a authored by Marko Mäkelä's avatar Marko Mäkelä

Fix a merge error in the parent commit

Fix an inadvertently inverted condition that caused
galera.galera_sst_mariabackup_table_options test failure.
parent b7392d14
......@@ -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;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment