Return-Path: Delivered-To: apmail-httpd-cvs-archive@httpd.apache.org Received: (qmail 38592 invoked by uid 500); 11 Dec 2002 22:09:53 -0000 Mailing-List: contact cvs-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@httpd.apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list cvs@httpd.apache.org Received: (qmail 38497 invoked by uid 500); 11 Dec 2002 22:09:50 -0000 Delivered-To: apmail-httpd-2.0-cvs@apache.org Date: 11 Dec 2002 22:09:41 -0000 Message-ID: <20021211220941.7533.qmail@icarus.apache.org> From: gregames@apache.org To: httpd-2.0-cvs@apache.org Subject: cvs commit: httpd-2.0/server protocol.c X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N gregames 2002/12/11 14:09:41 Modified: server protocol.c Log: ap_get_mime_headers: whoops - need to insure that we use a configured field size limit if there is one Revision Changes Path 1.125 +1 -1 httpd-2.0/server/protocol.c Index: protocol.c =================================================================== RCS file: /home/cvs/httpd-2.0/server/protocol.c,v retrieving revision 1.124 retrieving revision 1.125 diff -u -r1.124 -r1.125 --- protocol.c 11 Dec 2002 21:03:58 -0000 1.124 +++ protocol.c 11 Dec 2002 22:09:40 -0000 1.125 @@ -766,7 +766,7 @@ int folded = 0; field = NULL; - rv = ap_rgetline(&field, DEFAULT_LIMIT_REQUEST_FIELDSIZE + 2, + rv = ap_rgetline(&field, r->server->limit_req_fieldsize + 2, &len, r, 0, bb); /* ap_rgetline returns APR_ENOSPC if it fills up the buffer before