Skip to content

Commit

Permalink
Fixed the definition of the encryption callback
Browse files Browse the repository at this point in the history
  • Loading branch information
ayurchen authored and sciascid committed Nov 28, 2018
1 parent cfcf34e commit 8ffad51
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions src/wsrep_provider_v26.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -419,11 +419,12 @@ namespace
}
}

int encrypt_cb(wsrep_enc_ctx_t* /*ctx*/,
const wsrep_buf_t* /*input*/,
void* /*output*/,
wsrep_enc_direction_t /*direction*/,
bool /*final*/)
wsrep_cb_status_t encrypt_cb(void* /* app ctx */,
wsrep_enc_ctx_t* /*ctx*/,
const wsrep_buf_t* /*input*/,
void* /*output*/,
wsrep_enc_direction_t /*direction*/,
bool /*final*/)
{
return WSREP_CB_SUCCESS;
}
Expand Down

0 comments on commit 8ffad51

Please sign in to comment.