summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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) {