From 4a26329b4c105a2fa0f10de3ecf644e0d082b056 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Ulf=20M=C3=B6ller?= Date: Wed, 23 Feb 2000 22:11:07 +0000 Subject: [PATCH] correct macro. --- crypto/bn/bntest.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crypto/bn/bntest.c b/crypto/bn/bntest.c index d64d512e9a..503c4f3901 100644 --- a/crypto/bn/bntest.c +++ b/crypto/bn/bntest.c @@ -107,7 +107,7 @@ static const char rnd_seed[] = "string to make the random number generator think static void message(BIO *out, char *m) { fprintf(stderr, "test %s\n", m); -#if defined(linux) || defined(FreeBSD) /* can we use GNU bc features? */ +#if defined(linux) || defined(__FreeBSD__) /* can we use GNU bc features? */ BIO_puts(out, "print \"test "); BIO_puts(out, m); BIO_puts(out, "\\n\"\n"); -- 2.17.1