From 47abe380042cad34b78a1a9c7c18995f3e8f8ad2 Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Mon, 7 Dec 2015 20:49:17 +0100 Subject: [PATCH] Remove typedef of HMAC_CTX from crypto/hmac/hmac_lcl.h This is already defined in include/openssl/ossl_typ.h. Reviewed-by: Matt Caswell --- crypto/hmac/hmac_lcl.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crypto/hmac/hmac_lcl.h b/crypto/hmac/hmac_lcl.h index b14607dba4..f6ce8f9f3f 100644 --- a/crypto/hmac/hmac_lcl.h +++ b/crypto/hmac/hmac_lcl.h @@ -65,13 +65,13 @@ extern "C" { } #endif -typedef struct hmac_ctx_st { +struct hmac_ctx_st { const EVP_MD *md; EVP_MD_CTX *md_ctx; EVP_MD_CTX *i_ctx; EVP_MD_CTX *o_ctx; unsigned int key_length; unsigned char key[HMAC_MAX_MD_CBLOCK]; -} HMAC_CTX; +}; #endif -- 2.40.0