summaryrefslogtreecommitdiff
path: root/www
diff options
context:
space:
mode:
authoradam <adam@pkgsrc.org>2018-06-21 11:32:15 +0000
committeradam <adam@pkgsrc.org>2018-06-21 11:32:15 +0000
commit211089fd6599e1aa287fa1b5f992cf5cce5a8257 (patch)
tree288e878cd528386d698b583f3b77f78508810608 /www
parentc747f6403c5a29f008ce26bf81e31554bfd5d97c (diff)
downloadpkgsrc-211089fd6599e1aa287fa1b5f992cf5cce5a8257.tar.gz
tinyproxy: also remove unnecessary patch
Diffstat (limited to 'www')
-rw-r--r--www/tinyproxy/patches/patch-src_child.c24
1 files changed, 0 insertions, 24 deletions
diff --git a/www/tinyproxy/patches/patch-src_child.c b/www/tinyproxy/patches/patch-src_child.c
deleted file mode 100644
index f1ed2d06fd4..00000000000
--- a/www/tinyproxy/patches/patch-src_child.c
+++ /dev/null
@@ -1,24 +0,0 @@
-$NetBSD: patch-src_child.c,v 1.1 2012/12/13 09:01:26 wiz Exp $
-
-Fix CVE-2012-3505 using Debian patch.
-
---- src/child.c.orig 2010-01-10 22:52:04.000000000 +0000
-+++ src/child.c
-@@ -20,6 +20,9 @@
- * processing incoming connections.
- */
-
-+#include <stdlib.h>
-+#include <time.h>
-+
- #include "main.h"
-
- #include "child.h"
-@@ -196,6 +199,7 @@ static void child_main (struct child_s *
- }
-
- ptr->connects = 0;
-+ srand(time(NULL));
-
- while (!config.quit) {
- ptr->status = T_WAITING;