diff options
author | Dr. Stephen Henson <steve@openssl.org> | 2009-10-01 14:17:44 +0200 |
---|---|---|
committer | Dr. Stephen Henson <steve@openssl.org> | 2009-10-01 14:17:44 +0200 |
commit | fecef70773b2408cdaf8a8631057c83d762730cd (patch) | |
tree | faa200f21a5e71104a99c4c72ad981243a7932f8 /crypto/evp/m_sigver.c | |
parent | PR: 2061 (diff) | |
download | openssl-fecef70773b2408cdaf8a8631057c83d762730cd.tar.xz openssl-fecef70773b2408cdaf8a8631057c83d762730cd.zip |
Yes it is a typo ;-)
Diffstat (limited to 'crypto/evp/m_sigver.c')
-rw-r--r-- | crypto/evp/m_sigver.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/crypto/evp/m_sigver.c b/crypto/evp/m_sigver.c index d98455eaad..f0b7f95059 100644 --- a/crypto/evp/m_sigver.c +++ b/crypto/evp/m_sigver.c @@ -179,8 +179,7 @@ int EVP_DigestVerifyFinal(EVP_MD_CTX *ctx, unsigned char *sig, size_t siglen) unsigned int mdlen; int vctx; - /* FIXME: surely this should test verifyctx? (Ben 29/12/08) */ - if (ctx->pctx->pmeth->signctx) + if (ctx->pctx->pmeth->verifyctx) vctx = 1; else vctx = 0; |