From b90c24d243f88b927e13acea4c849da42c117505 Mon Sep 17 00:00:00 2001 From: Joe Orton Date: Mon, 16 May 2005 19:36:04 +0000 Subject: [PATCH] * 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 --- server/protocol.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/server/protocol.c b/server/protocol.c index 60b1a9c139..8fa995d59a 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)); -- 2.50.1