]> granicus.if.org Git - apache/commitdiff
* server/protocol.c (read_request_line): Revert addition of error
authorJoe Orton <jorton@apache.org>
Mon, 16 May 2005 19:36:04 +0000 (19:36 +0000)
committerJoe Orton <jorton@apache.org>
Mon, 16 May 2005 19:36:04 +0000 (19:36 +0000)
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

index 60b1a9c139d1456bac71e2bd10db69483e152ddb..8fa995d59a02a77b1454b37fdac5251a9b0c0a2c 100644 (file)
@@ -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));