Files
ports/www/links1/files/patch-https.c
T
2020-01-26 15:40:37 +00:00

15 lines
413 B
C

--- https.c.orig 2018-02-08 18:01:11 UTC
+++ https.c
@@ -34,7 +34,10 @@ SSL *getSSL(void)
{
char f_randfile[PATH_MAX];
const char *f = RAND_file_name(f_randfile, sizeof(f_randfile));
- if (f && RAND_egd(f)<0) {
+#ifndef OPENSSL_NO_EGD
+ if (f && RAND_egd(f)<0)
+#endif
+ {
/* Not an EGD, so read and write to it */
if (RAND_load_file(f_randfile, -1))
RAND_write_file(f_randfile);