From 337e36823997f993ab894f5776eebca511e823cf Mon Sep 17 00:00:00 2001 From: Ben Laurie Date: Sat, 27 Aug 2005 12:10:34 +0000 Subject: [PATCH] Fix warnings. --- ssl/s2_lib.c | 1 - ssl/s3_lib.c | 1 - 2 files changed, 2 deletions(-) diff --git a/ssl/s2_lib.c b/ssl/s2_lib.c index a0ffd92aa2..37f83cd891 100644 --- a/ssl/s2_lib.c +++ b/ssl/s2_lib.c @@ -336,7 +336,6 @@ SSL_CIPHER *ssl2_get_cipher_by_char(const unsigned char *p) { SSL_CIPHER c,*cp; unsigned long id; - unsigned int i; id=0x02000000L|((unsigned long)p[0]<<16L)| ((unsigned long)p[1]<<8L)|(unsigned long)p[2]; diff --git a/ssl/s3_lib.c b/ssl/s3_lib.c index c700ac6372..5c9fc2bdf7 100644 --- a/ssl/s3_lib.c +++ b/ssl/s3_lib.c @@ -1880,7 +1880,6 @@ SSL_CIPHER *ssl3_get_cipher_by_char(const unsigned char *p) { SSL_CIPHER c,*cp; unsigned long id; - unsigned int i; id=0x03000000L|((unsigned long)p[0]<<8L)|(unsigned long)p[1]; c.id=id; -- 2.40.0