summaryrefslogtreecommitdiff
path: root/package/elinks/patches/patch-src_network_ssl_ssl_c
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2024-02-18 06:06:43 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2024-02-22 14:19:06 +0100
commit5a4e43f78e2c963e8565e7b3d5ac0d09e42429bd (patch)
tree55f7b17394cc8ca95b1f313e62597a0e7b6b1a4e /package/elinks/patches/patch-src_network_ssl_ssl_c
parentd7f7780869385f1459dc70138a840154c472948f (diff)
elinke: remove package
Diffstat (limited to 'package/elinks/patches/patch-src_network_ssl_ssl_c')
-rw-r--r--package/elinks/patches/patch-src_network_ssl_ssl_c16
1 files changed, 0 insertions, 16 deletions
diff --git a/package/elinks/patches/patch-src_network_ssl_ssl_c b/package/elinks/patches/patch-src_network_ssl_ssl_c
deleted file mode 100644
index f55f43ba4..000000000
--- a/package/elinks/patches/patch-src_network_ssl_ssl_c
+++ /dev/null
@@ -1,16 +0,0 @@
---- elinks-0.11.7.orig/src/network/ssl/ssl.c 2009-08-22 13:15:08.000000000 +0200
-+++ elinks-0.11.7/src/network/ssl/ssl.c 2016-09-30 18:47:20.022831750 +0200
-@@ -49,11 +49,8 @@ init_openssl(struct module *module)
- * cannot initialize the PRNG and so every attempt to use SSL fails.
- * It's actually an OpenSSL FAQ, and according to them, it's up to the
- * application coders to seed the RNG. -- William Yodlowsky */
-- if (RAND_egd(RAND_file_name(f_randfile, sizeof(f_randfile))) < 0) {
-- /* Not an EGD, so read and write to it */
-- if (RAND_load_file(f_randfile, -1))
-- RAND_write_file(f_randfile);
-- }
-+ if (RAND_load_file(f_randfile, -1))
-+ RAND_write_file(f_randfile);
-
- SSLeay_add_ssl_algorithms();
- context = SSL_CTX_new(SSLv23_client_method());