From: Richard Levitte Date: Sat, 26 Feb 2000 00:26:17 +0000 (+0000) Subject: For safety, check __VMS as well. X-Git-Tag: OpenSSL_0_9_5beta2~36 X-Git-Url: https://git.openssl.org/?p=openssl.git;a=commitdiff_plain;h=7c0dc41c387b6e25d47325713b120aeca085adf1 For safety, check __VMS as well. --- diff --git a/crypto/rand/rand_egd.c b/crypto/rand/rand_egd.c index b640469faf..11de4f253f 100644 --- a/crypto/rand/rand_egd.c +++ b/crypto/rand/rand_egd.c @@ -59,7 +59,7 @@ /* Query the EGD . */ -#if defined(WIN32) || defined(VMS) +#if defined(WIN32) || defined(VMS) || defined(__VMS) int RAND_egd(const char *path) { return(-1);