summaryrefslogtreecommitdiffstats
path: root/ssl/t1_lib.c
diff options
context:
space:
mode:
authorNils Larsch <nils@openssl.org>2006-03-13 22:07:05 +0000
committerNils Larsch <nils@openssl.org>2006-03-13 22:07:05 +0000
commit90bdfd97a68ed56d926a44b3d37f51b2450f5bb7 (patch)
treed45f05023fe85487d669f219f35f00b375b1d525 /ssl/t1_lib.c
parentb9865f110ea66ee00043bad9cf24fb46513fb865 (diff)
signed vs. unsigned
Diffstat (limited to 'ssl/t1_lib.c')
-rw-r--r--ssl/t1_lib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ssl/t1_lib.c b/ssl/t1_lib.c
index 330963ecab..cdcc0598c2 100644
--- a/ssl/t1_lib.c
+++ b/ssl/t1_lib.c
@@ -629,7 +629,7 @@ int ssl_check_serverhello_tlsext(SSL *s)
((algs & SSL_kECDH) || (algs & SSL_kECDHE) || (algs & SSL_aECDSA)))
{
/* we are using an ECC cipher */
- int i;
+ size_t i;
unsigned char *list;
int found_uncompressed = 0;
if ((s->session->tlsext_ecpointformatlist == NULL) || (s->session->tlsext_ecpointformatlist_length <= 0))