From: Ryan Bloom Date: Wed, 18 Apr 2001 20:46:46 +0000 (+0000) Subject: Don't overwrite r->the_request. This was causing us to never get the X-Git-Tag: 2.0.18~207 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=17df005db7f949b5b038a963d526c2c78b6be245;p=thirdparty%2Fapache%2Fhttpd.git Don't overwrite r->the_request. This was causing us to never get the request in the access_log git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@88885 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/protocol.c b/server/protocol.c index 1e4aa6fc913..d6ed4d98295 100644 --- a/server/protocol.c +++ b/server/protocol.c @@ -469,7 +469,6 @@ request_rec *ap_read_request(conn_rec *conn) 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;