summaryrefslogtreecommitdiffstats
path: root/crypto/bn/bntest.c
diff options
context:
space:
mode:
authorUlf Möller <ulf@openssl.org>2000-02-23 22:11:07 +0000
committerUlf Möller <ulf@openssl.org>2000-02-23 22:11:07 +0000
commit4a26329b4c105a2fa0f10de3ecf644e0d082b056 (patch)
treecc9a7745e3aebcf456d0c51e83cd0e69e7ae6b1c /crypto/bn/bntest.c
parent71308c3bb54678d33f76ec3fcd83d0ab1ed7029a (diff)
correct macro.
Diffstat (limited to 'crypto/bn/bntest.c')
-rw-r--r--crypto/bn/bntest.c2
1 files changed, 1 insertions, 1 deletions
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");