From af32fbebefe65e9b8acfc6a0c4b8d8e47210385a Mon Sep 17 00:00:00 2001 From: Christophe Jaillet Date: Mon, 10 Dec 2012 20:53:24 +0000 Subject: [PATCH] Avoid unnecessary %s substitution git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1419755 13f79535-47bb-0310-9956-ffa450edef68 --- modules/http/http_filters.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/http/http_filters.c b/modules/http/http_filters.c index c04e97d7cd..c4a9f34277 100644 --- a/modules/http/http_filters.c +++ b/modules/http/http_filters.c @@ -966,10 +966,10 @@ static void basic_http_header(request_rec *r, apr_bucket_brigade *bb, * Date and Server are less interesting, use TRACE5 for them while * using TRACE4 for the other headers. */ - ap_log_rerror(APLOG_MARK, APLOG_TRACE5, 0, r, " %s: %s", "Date", + ap_log_rerror(APLOG_MARK, APLOG_TRACE5, 0, r, " Date: %s", proxy_date ? proxy_date : date ); if (server) - ap_log_rerror(APLOG_MARK, APLOG_TRACE5, 0, r, " %s: %s", "Server", + ap_log_rerror(APLOG_MARK, APLOG_TRACE5, 0, r, " Server: %s", server); } -- 2.49.0