Switch the SSL_SESSION's master_key_length to a size_t
authortb <tb@openbsd.org>
Tue, 7 Jun 2022 17:18:21 +0000 (17:18 +0000)
committertb <tb@openbsd.org>
Tue, 7 Jun 2022 17:18:21 +0000 (17:18 +0000)
ok jsing

lib/libssl/ssl_locl.h

index 25c1cf1..72565b3 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: ssl_locl.h,v 1.391 2022/06/06 16:11:00 tb Exp $ */
+/* $OpenBSD: ssl_locl.h,v 1.392 2022/06/07 17:18:21 tb Exp $ */
 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
  * All rights reserved.
  *
@@ -463,7 +463,7 @@ struct ssl_session_st {
        int ssl_version;        /* what ssl version session info is
                                 * being kept in here? */
 
-       int master_key_length;
+       size_t master_key_length;
        unsigned char master_key[SSL_MAX_MASTER_KEY_LENGTH];
 
        /* session_id - valid? */