summaryrefslogtreecommitdiff
path: root/www/thttpd/files
diff options
context:
space:
mode:
authorAnders Nordby <anders@FreeBSD.org>2001-11-22 00:10:56 +0000
committerAnders Nordby <anders@FreeBSD.org>2001-11-22 00:10:56 +0000
commitd43c11d3121b590c370428080789f2f938f09e46 (patch)
treea84aa6c16e3fb48df7e4939a5332d259404cbde9 /www/thttpd/files
parentUpdate mod_watch to version 2.4. Reclaim maintainership. (diff)
Update thttpd to 2.22beta4. This fixes the recently announced off-by-one
security issue, and eliminates the need for the kqueue -current fix.
Notes
Notes: svn path=/head/; revision=50350
Diffstat (limited to 'www/thttpd/files')
-rw-r--r--www/thttpd/files/patch-fdwatch.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/www/thttpd/files/patch-fdwatch.c b/www/thttpd/files/patch-fdwatch.c
deleted file mode 100644
index 7e5b9182372a..000000000000
--- a/www/thttpd/files/patch-fdwatch.c
+++ /dev/null
@@ -1,12 +0,0 @@
---- fdwatch.c.orig Fri Aug 24 00:19:39 2001
-+++ fdwatch.c Fri Aug 24 00:20:30 2001
-@@ -311,6 +311,9 @@
- if ( kqchanges == (struct kevent*) 0 || kqevents == (struct kevent*) 0 ||
- kqrfdidx == (int*) 0 )
- return -1;
-+ memset(kqchanges, '\0', sizeof(struct kevent) * 2 * nfiles);
-+ memset(kqevents, '\0', sizeof(struct kevent) * nfiles);
-+ memset(kqrfdidx, '\0', sizeof(int) * nfiles);
- return 0;
- }
-