From b2f94f81e1d65a63e1ad255ccde423235093920e Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Wed, 10 Sep 2003 09:05:06 +0000 Subject: [PATCH] We currently define FIPS, not OPENSSL_FIPS. The reason for this is (probably) that FIPS is an entirely internal macro, and is not accessible by third-party authors. --- fips/dsa/fips_dsatest.c | 2 +- fips/rand/fips_randtest.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/fips/dsa/fips_dsatest.c b/fips/dsa/fips_dsatest.c index be794005ad..7a54d38c78 100644 --- a/fips/dsa/fips_dsatest.c +++ b/fips/dsa/fips_dsatest.c @@ -74,7 +74,7 @@ #include #include -#if defined(OPENSSL_NO_DSA) || !defined(OPENSSL_FIPS) +#if defined(OPENSSL_NO_DSA) || !defined(FIPS) int main(int argc, char *argv[]) { printf("No FIPS DSA support\n"); diff --git a/fips/rand/fips_randtest.c b/fips/rand/fips_randtest.c index ca47ca4ad9..5fcee19d52 100644 --- a/fips/rand/fips_randtest.c +++ b/fips/rand/fips_randtest.c @@ -110,7 +110,7 @@ #include "../e_os.h" -#ifndef OPENSSL_FIPS +#ifndef FIPS int main(int argc, char *argv[]) { printf("No FIPS RAND support\n"); -- 2.25.1