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:
a1006c3
)
fix stupid typo
author
Bodo Möller
<bodo@openssl.org>
Wed, 26 Oct 2005 19:30:10 +0000
(19:30 +0000)
committer
Bodo Möller
<bodo@openssl.org>
Wed, 26 Oct 2005 19:30:10 +0000
(19:30 +0000)
apps/ciphers.c
patch
|
blob
|
history
diff --git
a/apps/ciphers.c
b/apps/ciphers.c
index aa76ae2853532a3dc7d40b0616fd6af0ed508e68..be3fc18e0e4edbf6ce0fb9b7c27edc9319d2d162 100644
(file)
--- a/
apps/ciphers.c
+++ b/
apps/ciphers.c
@@
-198,7
+198,7
@@
int MAIN(int argc, char **argv)
int id0 = (int)(id >> 24);
int id1 = (int)((id >> 16) & 0xffL);
int id2 = (int)((id >> 8) & 0xffL);
- int id3 = (int)(i & 0xffL);
+ int id3 = (int)(i
d
& 0xffL);
if ((id & 0xff000000L) == 0x02000000L)
BIO_printf(STDout, " 0x%02X,0x%02X,0x%02X - ", id1, id2, id3); /* SSL2 cipher */