summaryrefslogtreecommitdiffstats
path: root/ssl/s3_enc.c
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2016-10-04 21:14:24 +0100
committerMatt Caswell <matt@openssl.org>2016-11-04 12:09:45 +0000
commit6db6bc5a8f0663e679a99ea91a6f490db0f183ba (patch)
treeaa2b757fae926c28e7ac3739f69ee7186d3446bd /ssl/s3_enc.c
parentcb150cbcaca651a5b32fc1f1fc94ca61285c3515 (diff)
Convert some libssl local functions to size_t
Reviewed-by: Rich Salz <rsalz@openssl.org>
Diffstat (limited to 'ssl/s3_enc.c')
-rw-r--r--ssl/s3_enc.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/ssl/s3_enc.c b/ssl/s3_enc.c
index 7fdf4e15b1..9283c74458 100644
--- a/ssl/s3_enc.c
+++ b/ssl/s3_enc.c
@@ -407,7 +407,8 @@ int ssl3_digest_cached_records(SSL *s, int keep)
return 1;
}
-size_t ssl3_final_finish_mac(SSL *s, const char *sender, int len, unsigned char *p)
+size_t ssl3_final_finish_mac(SSL *s, const char *sender, size_t len,
+ unsigned char *p)
{
int ret;
EVP_MD_CTX *ctx = NULL;