From 4d4e08ec1ce1558ca25f75b05a919ac6dc8f1338 Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Sun, 28 May 2006 19:44:27 +0000 Subject: [PATCH] Use a new signed int ii instead of j (which is unsigned) to handle the return value from sk_SSL_CIPHER_find(). --- ssl/s3_lib.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ssl/s3_lib.c b/ssl/s3_lib.c index 7a87da6105..bfb70515b0 100644 --- a/ssl/s3_lib.c +++ b/ssl/s3_lib.c @@ -2043,7 +2043,7 @@ SSL_CIPHER *ssl3_choose_cipher(SSL *s, STACK_OF(SSL_CIPHER) *clnt, { SSL_CIPHER *c,*ret=NULL; STACK_OF(SSL_CIPHER) *prio, *allow; - int i,ok; + int i,ii,ok; unsigned int j; #ifndef OPENSSL_NO_TLSEXT #ifndef OPENSSL_NO_EC @@ -2291,10 +2291,10 @@ SSL_CIPHER *ssl3_choose_cipher(SSL *s, STACK_OF(SSL_CIPHER) *clnt, #endif /* OPENSSL_NO_TLSEXT */ if (!ok) continue; - j=sk_SSL_CIPHER_find(allow,c); - if (j >= 0) + ii=sk_SSL_CIPHER_find(allow,c); + if (ii >= 0) { - ret=sk_SSL_CIPHER_value(allow,j); + ret=sk_SSL_CIPHER_value(allow,ii); break; } } -- 2.34.1