summaryrefslogtreecommitdiffstats
path: root/ssl/s3_enc.c
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2016-10-04 20:56:11 +0100
committerMatt Caswell <matt@openssl.org>2016-11-04 12:09:45 +0000
commit12472b456180cbc582d6152e174135524081c3ba (patch)
tree5412c7794fccfba4eec13bf502034a53bee27fe1 /ssl/s3_enc.c
parentec60ccc1c1b9562359753e8fcbeeab0a6b4b669c (diff)
Update numerous misc libssl fields to be size_t
Reviewed-by: Rich Salz <rsalz@openssl.org>
Diffstat (limited to 'ssl/s3_enc.c')
-rw-r--r--ssl/s3_enc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ssl/s3_enc.c b/ssl/s3_enc.c
index 58f63e24f0..7fdf4e15b1 100644
--- a/ssl/s3_enc.c
+++ b/ssl/s3_enc.c
@@ -407,7 +407,7 @@ int ssl3_digest_cached_records(SSL *s, int keep)
return 1;
}
-int 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, int len, unsigned char *p)
{
int ret;
EVP_MD_CTX *ctx = NULL;