Commit 54f7dccc authored by Joe Orton's avatar Joe Orton
Browse files

* 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
parent 4c6444e0
Loading
Loading
Loading
Loading
+0 −4
Original line number Diff line number Diff line
@@ -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));