summaryrefslogtreecommitdiff
path: root/src/lib
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/libssl/ssl_locl.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/libssl/ssl_locl.h b/src/lib/libssl/ssl_locl.h
index 19d883e3b0..80a7d95be5 100644
--- a/src/lib/libssl/ssl_locl.h
+++ b/src/lib/libssl/ssl_locl.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: ssl_locl.h,v 1.308 2020/12/01 07:46:02 tb Exp $ */ 1/* $OpenBSD: ssl_locl.h,v 1.309 2020/12/14 15:20:31 tb Exp $ */
2/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) 2/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
3 * All rights reserved. 3 * All rights reserved.
4 * 4 *
@@ -897,9 +897,9 @@ typedef struct ssl3_state_internal_st {
897 897
898 /* actually only need to be 16+20 for SSLv3 and 12 for TLS */ 898 /* actually only need to be 16+20 for SSLv3 and 12 for TLS */
899 unsigned char finish_md[EVP_MAX_MD_SIZE*2]; 899 unsigned char finish_md[EVP_MAX_MD_SIZE*2];
900 int finish_md_len; 900 size_t finish_md_len;
901 unsigned char peer_finish_md[EVP_MAX_MD_SIZE*2]; 901 unsigned char peer_finish_md[EVP_MAX_MD_SIZE*2];
902 int peer_finish_md_len; 902 size_t peer_finish_md_len;
903 903
904 unsigned long message_size; 904 unsigned long message_size;
905 int message_type; 905 int message_type;