From: Joe Orton Date: Mon, 16 May 2005 19:36:04 +0000 (+0000) Subject: * server/protocol.c (read_request_line): Revert addition of error X-Git-Tag: 2.1.5~108 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b90c24d243f88b927e13acea4c849da42c117505;p=thirdparty%2Fapache%2Fhttpd.git * server/protocol.c (read_request_line): Revert addition of error message which triggers every time dummy_connection() is used to wake up a child. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@170433 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/protocol.c b/server/protocol.c index 60b1a9c139d..8fa995d59a0 100644 --- a/server/protocol.c +++ b/server/protocol.c @@ -599,10 +599,6 @@ static int read_request_line(request_rec *r, apr_bucket_brigade *bb) r->proto_num = HTTP_VERSION(1,0); r->protocol = apr_pstrdup(r->pool, "HTTP/1.0"); } - else if (r->connection->keepalive != AP_CONN_KEEPALIVE) { - ap_log_rerror(APLOG_MARK, APLOG_INFO, rv, r, - "Error while reading request line. (client didn't send a request?)"); - } return 0; } } while ((len <= 0) && (++num_blank_lines < max_blank_lines));