Commit 9a921861 authored by Joe Orton's avatar Joe Orton
Browse files

* 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
parent e009bda4
Loading
Loading
Loading
Loading
+1 −1
Changes for modules/experimental/mod_filter.c: 1 added line, 1 removed line.
Original line number Diff line number Diff line
@@ -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)) {