From 7e7ee80d85c94b620c6ea56553a7fd491cb41344 Mon Sep 17 00:00:00 2001 From: Eric Covener Date: Wed, 15 Aug 2018 11:40:11 +0000 Subject: [PATCH] add ids git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1838079 13f79535-47bb-0310-9956-ffa450edef68 --- docs/log-message-tags/next-number | 2 +- server/protocol.c | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/log-message-tags/next-number b/docs/log-message-tags/next-number index d7f47ddbba..0d02a5ca06 100644 --- a/docs/log-message-tags/next-number +++ b/docs/log-message-tags/next-number @@ -1 +1 @@ -10156 +10158 diff --git a/server/protocol.c b/server/protocol.c index d57f64f65a..c43ce117e6 100644 --- a/server/protocol.c +++ b/server/protocol.c @@ -1460,14 +1460,14 @@ request_rec *ap_read_request(conn_rec *conn) access_status = ap_update_vhost_from_headers_ex(r, conf->strict_host_check == AP_CORE_CONFIG_ON); if (conf->strict_host_check == AP_CORE_CONFIG_ON && access_status != HTTP_OK) { if (r->server == ap_server_conf) { - ap_log_rerror(APLOG_MARK, APLOG_WARNING, 0, r, APLOGNO() + ap_log_rerror(APLOG_MARK, APLOG_WARNING, 0, r, APLOGNO(10156) "Requested hostname '%s' did not match any ServerName/ServerAlias " "in the global server configuration ", r->hostname); } else { - ap_log_rerror(APLOG_MARK, APLOG_WARNING, 0, r, APLOGNO() + ap_log_rerror(APLOG_MARK, APLOG_WARNING, 0, r, APLOGNO(10157) "Requested hostname '%s' did not match any ServerName/ServerAlias " "in the matching virtual host (default vhost for " - "current connection is %s:%u)", + "current connection is %s:%u)", r->hostname, r->server->defn_name, r->server->defn_line_number); } r->status = access_status; -- 2.40.0