From: Jim Jagielski Date: Thu, 25 Aug 2011 13:29:39 +0000 (+0000) Subject: simple name change for clarity X-Git-Tag: 2.3.15~363 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=fa0d225c41dc294f287c204396eb97f27d5c151a;p=apache simple name change for clarity git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1161560 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/http/byterange_filter.c b/modules/http/byterange_filter.c index 46c3c2fc84..79c4a8b668 100644 --- a/modules/http/byterange_filter.c +++ b/modules/http/byterange_filter.c @@ -151,7 +151,7 @@ static apr_status_t copy_brigade_range(apr_bucket_brigade *bb, const char *s; apr_size_t len; apr_uint64_t start64, end64; - apr_off_t poff; + apr_off_t pofft; /* * ala apr_brigade_partition(), reduce casting hell... @@ -253,8 +253,8 @@ static apr_status_t copy_brigade_range(apr_bucket_brigade *bb, e = APR_BUCKET_NEXT(e); } - AP_DEBUG_ASSERT(APR_SUCCESS == apr_brigade_length(bbout, 1, &poff)); - pos = (apr_uint64_t)poff; + AP_DEBUG_ASSERT(APR_SUCCESS == apr_brigade_length(bbout, 1, &pofft)); + pos = (apr_uint64_t)pofft; AP_DEBUG_ASSERT(pos == end64 - start64 + 1); return APR_SUCCESS; }