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:
3380c45
)
Delete unused variables.
author
Dr. Stephen Henson
<steve@openssl.org>
Wed, 4 May 2005 22:02:32 +0000
(22:02 +0000)
committer
Dr. Stephen Henson
<steve@openssl.org>
Wed, 4 May 2005 22:02:32 +0000
(22:02 +0000)
fips/hmac/fips_hmactest.c
patch
|
blob
|
history
diff --git
a/fips/hmac/fips_hmactest.c
b/fips/hmac/fips_hmactest.c
index 2dc9b125bc727d406f734d88b0fedba15ae7f2f4..0ace943d348813eb6f1ba6001b0602485f5acd3e 100644
(file)
--- a/
fips/hmac/fips_hmactest.c
+++ b/
fips/hmac/fips_hmactest.c
@@
-146,7
+146,7
@@
int hmac_test(BIO *err, BIO *out, BIO *in)
char *linebuf, *olinebuf, *p, *q;
char *keyword, *value;
unsigned char *Key = NULL, *Msg = NULL;
- int Count, Klen, Tlen
, have_key, have_mesg
;
+ int Count, Klen, Tlen;
long Keylen, Msglen;
int ret = 0;
int lnum = 0;
@@
-160,8
+160,6
@@
int hmac_test(BIO *err, BIO *out, BIO *in)
Count = -1;
Klen = -1;
Tlen = -1;
- have_key = 0;
- have_mesg = 0;
while (BIO_gets(in, olinebuf, HMAC_TEST_MAXLINELEN) > 0)
{