projects
/
openssl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
|
inline
| side by side (parent:
64b6840
)
Fix warnings.
author
Ben Laurie
<ben@openssl.org>
Sat, 27 Aug 2005 12:10:34 +0000
(12:10 +0000)
committer
Ben Laurie
<ben@openssl.org>
Sat, 27 Aug 2005 12:10:34 +0000
(12:10 +0000)
ssl/s2_lib.c
patch
|
blob
|
history
ssl/s3_lib.c
patch
|
blob
|
history
diff --git
a/ssl/s2_lib.c
b/ssl/s2_lib.c
index
a0ffd92
..
37f83cd
100644
(file)
--- 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;
{
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];
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
c700ac6
..
5c9fc2b
100644
(file)
--- 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;
{
SSL_CIPHER c,*cp;
unsigned long id;
- unsigned int i;
id=0x03000000L|((unsigned long)p[0]<<8L)|(unsigned long)p[1];
c.id=id;
id=0x03000000L|((unsigned long)p[0]<<8L)|(unsigned long)p[1];
c.id=id;