From 7db69a35f9d2c7ac8029de11115b18a57d341bf5 Mon Sep 17 00:00:00 2001 From: Carlo Teubner <435950+c4rlo@users.noreply.github.com> Date: Fri, 17 Dec 2021 10:57:46 +0000 Subject: [PATCH] crypto/dsa.h: fix include guard name The current include guard name is a duplicate of the one in dsaerr.h. Noticed via https://lgtm.com/projects/g/openssl/openssl CLA: trivial Reviewed-by: Tomas Mraz Reviewed-by: Paul Dale (Merged from https://github.com/openssl/openssl/pull/17303) --- include/crypto/dsa.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/crypto/dsa.h b/include/crypto/dsa.h index eedbd8c7d10..e6b879b27ba 100644 --- a/include/crypto/dsa.h +++ b/include/crypto/dsa.h @@ -7,8 +7,8 @@ * https://www.openssl.org/source/license.html */ -#ifndef OSSL_CRYPTO_DSAERR_H -# define OSSL_CRYPTO_DSAERR_H +#ifndef OSSL_CRYPTO_DSA_H +# define OSSL_CRYPTO_DSA_H # pragma once # include -- 2.47.2