From dcc8312a197384167ddf55741090b7bddf92d34e Mon Sep 17 00:00:00 2001 From: Damien Miller Date: Mon, 2 Jun 2003 18:57:59 +1000 Subject: - (djm) Fix use of macro before #define in cipher-aes.c --- cipher-aes.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'cipher-aes.c') diff --git a/cipher-aes.c b/cipher-aes.c index bbfbe721..c41def60 100644 --- a/cipher-aes.c +++ b/cipher-aes.c @@ -22,8 +22,8 @@ * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -#if OPENSSL_VERSION_NUMBER < 0x00907000L #include "includes.h" +#if OPENSSL_VERSION_NUMBER < 0x00907000L RCSID("$OpenBSD: cipher-aes.c,v 1.1 2003/05/15 03:08:29 markus Exp $"); #include @@ -153,4 +153,4 @@ evp_rijndael(void) #endif return (&rijndal_cbc); } -#endif +#endif /* OPENSSL_VERSION_NUMBER */ -- cgit v1.2.1