Skip to content

Commit

Permalink
lib-dcrypt: Compiling fix
Browse files Browse the repository at this point in the history
  • Loading branch information
sirainen committed Jun 30, 2016
1 parent 7934f37 commit 87e9855
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib-dcrypt/dcrypt.c
Expand Up @@ -136,7 +136,7 @@ bool dcrypt_ctx_sym_final(struct dcrypt_context_symmetric *ctx, buffer_t *result

void dcrypt_ctx_sym_set_padding(struct dcrypt_context_symmetric *ctx, bool padding)
{
return dcrypt_vfs->ctx_sym_set_padding(ctx, padding);
dcrypt_vfs->ctx_sym_set_padding(ctx, padding);
}

bool dcrypt_ctx_hmac_create(const char *algorithm, struct dcrypt_context_hmac **ctx_r, const char **error_r)
Expand Down

0 comments on commit 87e9855

Please sign in to comment.