summaryrefslogtreecommitdiffstats
path: root/crypto/pkcs7
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2006-07-20 16:56:47 +0000
committerDr. Stephen Henson <steve@openssl.org>2006-07-20 16:56:47 +0000
commit786aa98da1e7921f240eedfb18e0370f0155c22b (patch)
tree98b15ca22821a0e598a169394e577403b878fe7e /crypto/pkcs7
parent413e0853d7457e9ca2dcc18fd2ca15ef9327b04d (diff)
Use correct pointer types for various functions.
Diffstat (limited to 'crypto/pkcs7')
-rw-r--r--crypto/pkcs7/pk7_doit.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/pkcs7/pk7_doit.c b/crypto/pkcs7/pk7_doit.c
index 478ec0ec2f..095661805e 100644
--- a/crypto/pkcs7/pk7_doit.c
+++ b/crypto/pkcs7/pk7_doit.c
@@ -829,7 +829,7 @@ int PKCS7_SIGNER_INFO_sign(PKCS7_SIGNER_INFO *si)
EVP_PKEY_CTX *pctx;
unsigned char *abuf = NULL;
int alen;
- unsigned int siglen;
+ size_t siglen;
const EVP_MD *md = NULL;
md = EVP_get_digestbyobj(si->digest_alg->algorithm);