From 11e4b79a3aa432878b7f855f67f3be2bf34e1a90 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Bodo=20M=C3=B6ller?= Date: Mon, 14 Jun 1999 14:48:25 +0000 Subject: [PATCH] rc4_locl.h and bf_locl.h incorrectly defined _HEADER_...; opensslconf.h always expects HEADER_... (no leading underscore). Submitted by: Andy Polyakov --- crypto/bf/bf_locl.h | 4 ++-- crypto/rc4/rc4_locl.h | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/crypto/bf/bf_locl.h b/crypto/bf/bf_locl.h index 3ebb145f88..05756b5d3b 100644 --- a/crypto/bf/bf_locl.h +++ b/crypto/bf/bf_locl.h @@ -56,8 +56,8 @@ * [including the GNU Public Licence.] */ -#ifndef _HEADER_BF_LOCL_H -#define _HEADER_BF_LOCL_H +#ifndef HEADER_BF_LOCL_H +#define HEADER_BF_LOCL_H #include /* BF_PTR, BF_PTR2 */ #undef c2l diff --git a/crypto/rc4/rc4_locl.h b/crypto/rc4/rc4_locl.h index 0448b06f25..3bb80b6ce9 100644 --- a/crypto/rc4/rc4_locl.h +++ b/crypto/rc4/rc4_locl.h @@ -1,4 +1,4 @@ -#ifndef _HEADER_RC4_LOCL_H -#define _HEADER_RC4_LOCL_H +#ifndef HEADER_RC4_LOCL_H +#define HEADER_RC4_LOCL_H #include #endif -- 2.34.1