From: Ulf Möller Date: Sun, 22 Sep 2002 08:49:22 +0000 (+0000) Subject: use OPENSSL_SYS_MSDOS rather than __DJGPP__ to disable egd, this is not X-Git-Tag: OpenSSL-engine-0_9_6h~23^2~48 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=40e66398dbe7f5e9ff6984ff0b2f92d0f151995e;p=thirdparty%2Fopenssl.git use OPENSSL_SYS_MSDOS rather than __DJGPP__ to disable egd, this is not compiler specific --- diff --git a/crypto/rand/rand_egd.c b/crypto/rand/rand_egd.c index abc3ac27d55..668c785f007 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);