diff options
author | Matt Caswell <matt@openssl.org> | 2016-10-04 21:56:11 +0200 |
---|---|---|
committer | Matt Caswell <matt@openssl.org> | 2016-11-04 13:09:45 +0100 |
commit | 12472b456180cbc582d6152e174135524081c3ba (patch) | |
tree | 5412c7794fccfba4eec13bf502034a53bee27fe1 /ssl/t1_enc.c | |
parent | Convert session_id_length and sid_ctx_len to size_t (diff) | |
download | openssl-12472b456180cbc582d6152e174135524081c3ba.tar.xz openssl-12472b456180cbc582d6152e174135524081c3ba.zip |
Update numerous misc libssl fields to be size_t
Reviewed-by: Rich Salz <rsalz@openssl.org>
Diffstat (limited to 'ssl/t1_enc.c')
-rw-r--r-- | ssl/t1_enc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ssl/t1_enc.c b/ssl/t1_enc.c index 46895ef597..8d87070dc2 100644 --- a/ssl/t1_enc.c +++ b/ssl/t1_enc.c @@ -451,7 +451,7 @@ int tls1_setup_key_block(SSL *s) return (ret); } -int tls1_final_finish_mac(SSL *s, const char *str, int slen, unsigned char *out) +size_t tls1_final_finish_mac(SSL *s, const char *str, int slen, unsigned char *out) { size_t hashlen; unsigned char hash[EVP_MAX_MD_SIZE]; |