From: Tony Finch Date: Thu, 18 Jan 2001 21:04:44 +0000 (+0000) Subject: Fix the RFC number mentioned when complaining about a missing X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=06862f975b8aab3628a3f5bf8b9246116b7a41c2;p=apache Fix the RFC number mentioned when complaining about a missing Host: header. PR: 7079 Submitted by: Alexey Toptygin git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87717 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/CHANGES b/CHANGES index 2a75cb1b2f..55e99d4855 100644 --- a/CHANGES +++ b/CHANGES @@ -1,5 +1,8 @@ Changes with Apache 2.0b1 + *) Fix the RFC number mentioned when complaining about a missing + Host: header. PR#7079 [Alexey Toptygin ] + *) Fix an endless loop in ab which occurred when ab was posting and the server dropped the connection unexpectedly. [Jeff Trawick] diff --git a/modules/http/http_protocol.c b/modules/http/http_protocol.c index 159717817b..138b1039d4 100644 --- a/modules/http/http_protocol.c +++ b/modules/http/http_protocol.c @@ -1545,7 +1545,7 @@ request_rec *ap_read_request(conn_rec *conn) r->status = HTTP_BAD_REQUEST; ap_log_rerror(APLOG_MARK, APLOG_NOERRNO|APLOG_ERR, 0, r, "client sent HTTP/1.1 request without hostname " - "(see RFC2068 section 9, and 14.23): %s", r->uri); + "(see RFC2616 section 14.23): %s", r->uri); } if (r->status != HTTP_OK) { ap_send_error_response(r, 0);