You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
329 B

  1. --- a/openssl.c
  2. +++ b/openssl.c
  3. @@ -137,7 +137,11 @@ ssl_rand_init(void)
  4. if ((cp = value("ssl-rand-egd")) != NULL) {
  5. cp = expand(cp);
  6. +#ifndef OPENSSL_NO_EGD
  7. if (RAND_egd(cp) == -1) {
  8. +#else
  9. + if (1) {
  10. +#endif
  11. fprintf(stderr, catgets(catd, CATSET, 245,
  12. "entropy daemon at \"%s\" not available\n"),
  13. cp);