From ee8836c442409252931c3952606eb7aadfa334f1 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Bodo=20M=C3=B6ller?= Date: Wed, 26 Oct 2005 19:30:10 +0000 Subject: [PATCH 1/1] fix stupid typo --- apps/ciphers.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/ciphers.c b/apps/ciphers.c index aa76ae2853..be3fc18e0e 100644 --- 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)(id & 0xffL); if ((id & 0xff000000L) == 0x02000000L) BIO_printf(STDout, " 0x%02X,0x%02X,0x%02X - ", id1, id2, id3); /* SSL2 cipher */ -- 2.34.1