]> granicus.if.org Git - apache/commitdiff
Avoid unnecessary %s substitution
authorChristophe Jaillet <jailletc36@apache.org>
Mon, 10 Dec 2012 20:53:24 +0000 (20:53 +0000)
committerChristophe Jaillet <jailletc36@apache.org>
Mon, 10 Dec 2012 20:53:24 +0000 (20:53 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1419755 13f79535-47bb-0310-9956-ffa450edef68

modules/http/http_filters.c

index c04e97d7cdeacf1d460bd9b2870b052c1ba69410..c4a9f34277c11983e11d23cdae0c764cc92c719d 100644 (file)
@@ -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);
     }