You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by jo...@apache.org on 2005/07/28 10:00:46 UTC

svn commit: r225725 - /httpd/httpd/trunk/modules/experimental/mod_filter.c

Author: jorton
Date: Thu Jul 28 01:00:43 2005
New Revision: 225725

URL: http://svn.apache.org/viewcvs?rev=225725&view=rev
Log:
* modules/experimental/mod_filter.c (filter_trace): Fix gcc
-Wformat-security warning.

Modified:
    httpd/httpd/trunk/modules/experimental/mod_filter.c

Modified: httpd/httpd/trunk/modules/experimental/mod_filter.c
URL: http://svn.apache.org/viewcvs/httpd/httpd/trunk/modules/experimental/mod_filter.c?rev=225725&r1=225724&r2=225725&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/experimental/mod_filter.c (original)
+++ httpd/httpd/trunk/modules/experimental/mod_filter.c Thu Jul 28 01:00:43 2005
@@ -127,7 +127,7 @@
     case 0:        /* normal, operational use */
         return;
     case 1:        /* mod_diagnostics level */
-        ap_log_cerror(APLOG_MARK, APLOG_DEBUG, 0, c, fname);
+        ap_log_cerror(APLOG_MARK, APLOG_DEBUG, 0, c, "%s", fname);
         for (b = APR_BRIGADE_FIRST(bb);
              b != APR_BRIGADE_SENTINEL(bb);
              b = APR_BUCKET_NEXT(b)) {