Return-Path: Delivered-To: apmail-apache-cvs-archive@apache.org Received: (qmail 20485 invoked by uid 500); 18 Apr 2001 20:46:48 -0000 Mailing-List: contact apache-cvs-help@apache.org; run by ezmlm Precedence: bulk Reply-To: new-httpd@apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list apache-cvs@apache.org Received: (qmail 20470 invoked by uid 500); 18 Apr 2001 20:46:47 -0000 Delivered-To: apmail-httpd-2.0-cvs@apache.org Date: 18 Apr 2001 20:46:46 -0000 Message-ID: <20010418204646.20465.qmail@apache.org> From: rbb@apache.org To: httpd-2.0-cvs@apache.org Subject: cvs commit: httpd-2.0/server protocol.c rbb 01/04/18 13:46:46 Modified: server protocol.c Log: Don't overwrite r->the_request. This was causing us to never get the request in the access_log Revision Changes Path 1.14 +0 -1 httpd-2.0/server/protocol.c Index: protocol.c =================================================================== RCS file: /home/cvs/httpd-2.0/server/protocol.c,v retrieving revision 1.13 retrieving revision 1.14 diff -u -d -b -w -u -r1.13 -r1.14 --- protocol.c 2001/04/18 03:53:34 1.13 +++ protocol.c 2001/04/18 20:46:46 1.14 @@ -469,7 +469,6 @@ r->read_body = REQUEST_NO_BODY; r->status = HTTP_REQUEST_TIME_OUT; /* Until we get a request */ - r->the_request = NULL; r->output_filters = conn->output_filters; r->input_filters = conn->input_filters;