summaryrefslogtreecommitdiffstats
path: root/ssl
diff options
context:
space:
mode:
authorBodo Möller <bodo@openssl.org>2001-11-14 21:18:35 +0000
committerBodo Möller <bodo@openssl.org>2001-11-14 21:18:35 +0000
commitc23d16ac1987f453ade45d3b9927e62c02b17ce0 (patch)
tree62c1b041d5b6e6c868926e01fc07c4132fd39e6f /ssl
parent1b28ed575be65c5cc1b3873f1f1a854e5f888c5b (diff)
cast to unsigned int, not to int to avoid the warning -- all these
values really are unsigned
Diffstat (limited to 'ssl')
-rw-r--r--ssl/s2_srvr.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ssl/s2_srvr.c b/ssl/s2_srvr.c
index dfac68095b..582420bcff 100644
--- a/ssl/s2_srvr.c
+++ b/ssl/s2_srvr.c
@@ -472,8 +472,8 @@ static int get_client_master_key(SSL *s)
* random master secret (Bleichenbacher attack) */
if ((i < 0) ||
((!is_export && (i != EVP_CIPHER_key_length(c)))
- || (is_export && ((i != ek) || ((int)s->s2->tmp.clear+i !=
- EVP_CIPHER_key_length(c))))))
+ || (is_export && ((i != ek) || (s->s2->tmp.clear+(unsigned int)i !=
+ (unsigned int)EVP_CIPHER_key_length(c))))))
{
ERR_clear_error();
if (is_export)