Skip to content

Commit

Permalink
Fix EVP_MD_meth_get_flags
Browse files Browse the repository at this point in the history
Reviewed-by: Rich Salz <rsalz@openssl.org>
Reviewed-by: Richard Levitte <levitte@openssl.org>
(Merged from #2134)
(cherry picked from commit 8bfa99f)
  • Loading branch information
tmshort authored and levitte committed Dec 22, 2016
1 parent 38bf0e6 commit 1e9e40d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crypto/evp/evp_lib.c
Expand Up @@ -404,7 +404,7 @@ int EVP_MD_meth_get_app_datasize(const EVP_MD *md)
}
unsigned long EVP_MD_meth_get_flags(const EVP_MD *md)
{
return md->block_size;
return md->flags;
}
int (*EVP_MD_meth_get_init(const EVP_MD *md))(EVP_MD_CTX *ctx)
{
Expand Down

0 comments on commit 1e9e40d

Please sign in to comment.