From: Richard Levitte Date: Mon, 14 Oct 2002 09:44:57 +0000 (+0000) Subject: Complete the VxWorks fix by implementing a NULL RAND_poll() for it. X-Git-Tag: OpenSSL_0_9_7-beta4~109^2~17 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=57d8ff79b27e0b5ed33220f605e714a921db998b;p=thirdparty%2Fopenssl.git Complete the VxWorks fix by implementing a NULL RAND_poll() for it. PR: 253 --- diff --git a/crypto/rand/rand_egd.c b/crypto/rand/rand_egd.c index d7dad3efd02..53a726e1aab 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(OPENSSL_SYS_MSDOS) +#if defined(OPENSSL_SYS_WIN32) || defined(OPENSSL_SYS_VMS) || defined(OPENSSL_SYS_MSDOS) || defined(OPENSSL_SYS_VXWORKS) int RAND_query_egd_bytes(const char *path, unsigned char *buf, int bytes) { return(-1); diff --git a/crypto/rand/rand_unix.c b/crypto/rand/rand_unix.c index 7de21d37d07..4175576fcc9 100644 --- a/crypto/rand/rand_unix.c +++ b/crypto/rand/rand_unix.c @@ -236,3 +236,10 @@ int RAND_poll(void) } #endif + +#if defined(OPENSSL_SYS_VXWORKS) +int RAND_poll(void) +{ + return 0; +} +#endif