summaryrefslogtreecommitdiffstats
path: root/ssl
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2006-04-17 12:08:22 +0000
committerDr. Stephen Henson <steve@openssl.org>2006-04-17 12:08:22 +0000
commitc20276e4aef1e716980589c43cf9276abc7ff2b7 (patch)
treedc4f04b4ea1176b86ab6229cd4338b334ad6496d /ssl
parent9ca7047d7141f58b4a4c9e1cdfc0d49301358095 (diff)
Fix (most) WIN32 warnings and errors.
Diffstat (limited to 'ssl')
-rw-r--r--ssl/s3_lib.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/ssl/s3_lib.c b/ssl/s3_lib.c
index 94bdb63cdb..c59fb556d9 100644
--- a/ssl/s3_lib.c
+++ b/ssl/s3_lib.c
@@ -2043,7 +2043,8 @@ 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,j,ok;
+ int i,ok;
+ unsigned int j;
#ifndef OPENSSL_NO_TLSEXT
#ifndef OPENSSL_NO_EC
int ec_ok, ec_nid;