From 7c0dc41c387b6e25d47325713b120aeca085adf1 Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Sat, 26 Feb 2000 00:26:17 +0000 Subject: [PATCH] For safety, check __VMS as well. --- 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 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); -- 2.25.1