From 40e66398dbe7f5e9ff6984ff0b2f92d0f151995e Mon Sep 17 00:00:00 2001 From: =?utf8?q?Ulf=20M=C3=B6ller?= Date: Sun, 22 Sep 2002 08:49:22 +0000 Subject: [PATCH] use OPENSSL_SYS_MSDOS rather than __DJGPP__ to disable egd, this is not compiler specific --- crypto/rand/rand_egd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crypto/rand/rand_egd.c b/crypto/rand/rand_egd.c index abc3ac27d5..668c785f00 100644 --- a/crypto/rand/rand_egd.c +++ b/crypto/rand/rand_egd.c @@ -94,7 +94,7 @@ * RAND_egd() is a wrapper for RAND_egd_bytes() with numbytes=255. */ -#if defined(OPENSSL_SYS_WIN32) || defined(OPENSSL_SYS_VMS) || defined(__DJGPP__) +#if defined(OPENSSL_SYS_WIN32) || defined(OPENSSL_SYS_VMS) || defined(OPENSSL_SYS_MSDOS) int RAND_query_egd_bytes(const char *path, unsigned char *buf, int bytes) { return(-1); -- 2.34.1