summaryrefslogtreecommitdiffstats
path: root/crypto/evp/p_verify.c
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2008-11-02 12:50:48 +0000
committerDr. Stephen Henson <steve@openssl.org>2008-11-02 12:50:48 +0000
commitc76fd290be9e4a755dde3c5fe1ed886a89e30fc6 (patch)
treefcede0e06d67a9ef78dbae03b3fb4cf812403f4b /crypto/evp/p_verify.c
parentd0a20cafa1ee76ae0b270e6bb6db50f18e874cf6 (diff)
Fix warnings about mismatched prototypes, undefined size_t and value computed
not used.
Diffstat (limited to 'crypto/evp/p_verify.c')
-rw-r--r--crypto/evp/p_verify.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/evp/p_verify.c b/crypto/evp/p_verify.c
index 8db46412f3..16a449aed1 100644
--- a/crypto/evp/p_verify.c
+++ b/crypto/evp/p_verify.c
@@ -62,8 +62,8 @@
#include <openssl/objects.h>
#include <openssl/x509.h>
-int EVP_VerifyFinal(EVP_MD_CTX *ctx, const unsigned char *sigbuf,
- unsigned int siglen, EVP_PKEY *pkey)
+int EVP_VerifyFinal(EVP_MD_CTX *ctx,const unsigned char *sigbuf,
+ size_t siglen,EVP_PKEY *pkey)
{
unsigned char m[EVP_MAX_MD_SIZE];
unsigned int m_len;