From: Dr. Matthias St. Pierre Date: Mon, 30 Sep 2019 07:05:44 +0000 (+0200) Subject: rand_unix.c: correct include guard comments X-Git-Tag: openssl-3.0.0-alpha1~1103 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=2a7e6ed86be20bd472696a3eafe5d20ec9579dab;p=oweals%2Fopenssl.git rand_unix.c: correct include guard comments Reviewed-by: Richard Levitte (Merged from https://github.com/openssl/openssl/pull/10050) --- diff --git a/crypto/rand/rand_unix.c b/crypto/rand/rand_unix.c index 7f3ea30e33..0925446580 100644 --- a/crypto/rand/rand_unix.c +++ b/crypto/rand/rand_unix.c @@ -81,7 +81,8 @@ static uint64_t get_timer_bits(void); # define OSSL_POSIX_TIMER_OKAY # endif # endif -#endif /* defined(OPENSSL_SYS_UNIX) || defined(__DJGPP__) */ +#endif /* (defined(OPENSSL_SYS_UNIX) && !defined(OPENSSL_SYS_VXWORKS)) + || defined(__DJGPP__) */ #if defined(OPENSSL_RAND_SEED_NONE) /* none means none. this simplifies the following logic */ @@ -851,4 +852,5 @@ static uint64_t get_timer_bits(void) # endif return time(NULL); } -#endif /* defined(OPENSSL_SYS_UNIX) || defined(__DJGPP__) */ +#endif /* (defined(OPENSSL_SYS_UNIX) && !defined(OPENSSL_SYS_VXWORKS)) + || defined(__DJGPP__) */