]> granicus.if.org Git - apache/commitdiff
Fix the RFC number mentioned when complaining about a missing
authorTony Finch <fanf@apache.org>
Thu, 18 Jan 2001 21:04:44 +0000 (21:04 +0000)
committerTony Finch <fanf@apache.org>
Thu, 18 Jan 2001 21:04:44 +0000 (21:04 +0000)
Host: header.

PR:             7079
Submitted by:   Alexey Toptygin <alexeyt@wam.umd.edu>

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87717 13f79535-47bb-0310-9956-ffa450edef68

CHANGES
modules/http/http_protocol.c

diff --git a/CHANGES b/CHANGES
index 2a75cb1b2f1b2fbe6fd516895c10a975f5a3d612..55e99d4855860f992addd6169c683d7329b39787 100644 (file)
--- 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 <alexeyt@wam.umd.edu>]
+
   *) Fix an endless loop in ab which occurred when ab was posting
      and the server dropped the connection unexpectedly.
      [Jeff Trawick]
index 159717817bb8454ec5bd137fe38d822821df0590..138b1039d4afe7d59a3d225afa5082c747f9c94a 100644 (file)
@@ -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);