You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by sf...@apache.org on 2011/08/27 13:44:03 UTC

svn commit: r1162325 - /httpd/httpd/trunk/modules/http/byterange_filter.c

Author: sf
Date: Sat Aug 27 11:44:03 2011
New Revision: 1162325

URL: http://svn.apache.org/viewvc?rev=1162325&view=rev
Log:
fix function name in log message

Modified:
    httpd/httpd/trunk/modules/http/byterange_filter.c

Modified: httpd/httpd/trunk/modules/http/byterange_filter.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/http/byterange_filter.c?rev=1162325&r1=1162324&r2=1162325&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/http/byterange_filter.c (original)
+++ httpd/httpd/trunk/modules/http/byterange_filter.c Sat Aug 27 11:44:03 2011
@@ -344,9 +344,8 @@ AP_CORE_DECLARE_NONSTD(apr_status_t) ap_
         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;
         }