projects
/
oweals
/
openssl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3c0e39c
)
Fix warnings.
author
Ben Laurie
<ben@openssl.org>
Sat, 27 Aug 2005 12:05:23 +0000
(12:05 +0000)
committer
Ben Laurie
<ben@openssl.org>
Sat, 27 Aug 2005 12:05:23 +0000
(12:05 +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 8dda67e8978e08ab43dea5eaeba7913cf080d2ff..d2cce7546d2ee2a965f43cb6f153b5ddd5d501a6 100644
(file)
--- a/
ssl/s2_lib.c
+++ b/
ssl/s2_lib.c
@@
-341,7
+341,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 7363329aa51d9fe4a21e233a2ce65ede9cfc1595..b016718a82742b07c4a30ed73bd09acfc8940cc8 100644
(file)
--- a/
ssl/s3_lib.c
+++ b/
ssl/s3_lib.c
@@
-1888,7
+1888,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;