From: Stefan Fritsch Date: Sat, 27 Aug 2011 11:44:03 +0000 (+0000) Subject: fix function name in log message X-Git-Tag: 2.3.15~338 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=25656f1ac4a9ea7baab540d1875b7cb73f620bd3;p=thirdparty%2Fapache%2Fhttpd.git fix function name in log message git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1162325 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/http/byterange_filter.c b/modules/http/byterange_filter.c index 9217f53609f..dc9092f1cc0 100644 --- a/modules/http/byterange_filter.c +++ b/modules/http/byterange_filter.c @@ -344,9 +344,8 @@ AP_CORE_DECLARE_NONSTD(apr_status_t) ap_byterange_filter(ap_filter_t *f, rv = copy_brigade_range(bb, tmpbb, range_start, range_end); if (rv != APR_SUCCESS ) { ap_log_rerror(APLOG_MARK, APLOG_ERR, rv, r, - "brigade_copy_range() failed " "[%" APR_OFF_T_FMT - "-%" APR_OFF_T_FMT ",%" - APR_OFF_T_FMT "]", + "copy_brigade_range() failed [%" APR_OFF_T_FMT + "-%" APR_OFF_T_FMT ",%" APR_OFF_T_FMT "]", range_start, range_end, clength); continue; }