From: Richard Levitte Date: Sun, 28 May 2006 19:44:27 +0000 (+0000) Subject: Use a new signed int ii instead of j (which is unsigned) to handle the X-Git-Tag: OpenSSL_0_9_8k^2~1287 X-Git-Url: https://git.openssl.org/?p=openssl.git;a=commitdiff_plain;h=4d4e08ec1ce1558ca25f75b05a919ac6dc8f1338 Use a new signed int ii instead of j (which is unsigned) to handle the return value from sk_SSL_CIPHER_find(). --- 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; } }