Delete unused variables.
authorDr. Stephen Henson <steve@openssl.org>
Wed, 4 May 2005 22:02:32 +0000 (22:02 +0000)
committerDr. Stephen Henson <steve@openssl.org>
Wed, 4 May 2005 22:02:32 +0000 (22:02 +0000)
fips/hmac/fips_hmactest.c

index 2dc9b125bc727d406f734d88b0fedba15ae7f2f4..0ace943d348813eb6f1ba6001b0602485f5acd3e 100644 (file)
@@ -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)
                {