summaryrefslogtreecommitdiff
path: root/www/apache
diff options
context:
space:
mode:
authorjdolecek <jdolecek@pkgsrc.org>2002-06-19 10:28:31 +0000
committerjdolecek <jdolecek@pkgsrc.org>2002-06-19 10:28:31 +0000
commitc46cbb86cfcae415cbd6257acf58f01e39aec525 (patch)
treecc2d2f00a0c42fe00636fb933a79f6782a9067f3 /www/apache
parent38271d52e61c2abb985e9e0582c4a247d7ec92d0 (diff)
downloadpkgsrc-c46cbb86cfcae415cbd6257acf58f01e39aec525.tar.gz
g/c, Apache folks fixed this differently
Diffstat (limited to 'www/apache')
-rw-r--r--www/apache/patches/patch-an13
1 files changed, 0 insertions, 13 deletions
diff --git a/www/apache/patches/patch-an b/www/apache/patches/patch-an
deleted file mode 100644
index b88bf342a3f..00000000000
--- a/www/apache/patches/patch-an
+++ /dev/null
@@ -1,13 +0,0 @@
-$NetBSD: patch-an,v 1.4 2002/06/18 01:45:37 itojun Exp $
-
---- src/main/http_protocol.c- Tue Jun 18 10:42:38 2002
-+++ src/main/http_protocol.c Tue Jun 18 10:42:50 2002
-@@ -2171,7 +2171,7 @@
-
- /* Otherwise, we are in the midst of reading a chunk of data */
-
-- len_to_read = (r->remaining > bufsiz) ? bufsiz : r->remaining;
-+ len_to_read = (r->remaining > (unsigned int)bufsiz) ? bufsiz : r->remaining;
-
- len_read = ap_bread(r->connection->client, buffer, len_to_read);
- if (len_read <= 0) {