Merge pull request #124 from Sp1l/master

Fix build when OpenSSL has no EGD support
This commit is contained in:
Love Hörnquist Åstrand
2015-04-28 08:36:43 -07:00
7 changed files with 4 additions and 10 deletions

View File

@@ -67,7 +67,7 @@ seed_something(void)
/* Calling RAND_status() will try to use /dev/urandom if it exists so
we do not have to deal with it. */
if (RAND_status() != 1) {
#ifndef NO_RAND_EGD_METHOD
#if defined(HAVE_RAND_EGD)
krb5_context context;
const char *p;