From d3f1127215ba943103152bb92cb35078ce067a71 Mon Sep 17 00:00:00 2001 From: Joe Orton Date: Thu, 28 Jul 2005 08:00:43 +0000 Subject: [PATCH] * modules/experimental/mod_filter.c (filter_trace): Fix gcc -Wformat-security warning. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@225725 13f79535-47bb-0310-9956-ffa450edef68 --- modules/experimental/mod_filter.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/experimental/mod_filter.c b/modules/experimental/mod_filter.c index fc2056d18e3..d85c76edabf 100644 --- a/modules/experimental/mod_filter.c +++ b/modules/experimental/mod_filter.c @@ -127,7 +127,7 @@ static void filter_trace(conn_rec *c, int debug, const char *fname, 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)) { -- 2.47.2