summaryrefslogtreecommitdiff
path: root/server/util_filter.c
diff options
context:
space:
mode:
authorJim Jagielski <jim@apache.org>2011-11-27 18:02:33 +0000
committerJim Jagielski <jim@apache.org>2011-11-27 18:02:33 +0000
commitc88247529e07a85f8882cf402e8278ad3d3d1b9b (patch)
tree17fa1d74cd0446d4633484bb0a6bf3e51397b0cf /server/util_filter.c
parentb90d1bb88ee593a806371c900756e776fc6f0813 (diff)
downloadhttpd-c88247529e07a85f8882cf402e8278ad3d3d1b9b.tar.gz
thx sf
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1206787 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'server/util_filter.c')
-rw-r--r--server/util_filter.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/server/util_filter.c b/server/util_filter.c
index 3facb8f904..7e204f2628 100644
--- a/server/util_filter.c
+++ b/server/util_filter.c
@@ -561,11 +561,7 @@ AP_DECLARE(apr_status_t) ap_pass_brigade_fchk(request_rec *r,
va_start(ap, fmt);
res = apr_pvsprintf(r->pool, fmt, ap);
va_end(ap);
- /*
- * Why the NULL?
- * handle: "error: format not a string literal and no format arguments"
- */
- ap_log_rerror(APLOG_MARK, APLOG_DEBUG, rv, r, res, NULL);
+ ap_log_rerror(APLOG_MARK, APLOG_DEBUG, rv, r, "%s", res);
}
return HTTP_INTERNAL_SERVER_ERROR;
}