From: Ben Laurie Date: Sat, 27 Aug 2005 12:10:34 +0000 (+0000) Subject: Fix warnings. X-Git-Tag: OpenSSL_0_9_8k^2~1837 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=337e36823997f993ab894f5776eebca511e823cf;p=oweals%2Fopenssl.git Fix warnings. --- 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;