]> granicus.if.org Git - apache/commitdiff
simple name change for clarity
authorJim Jagielski <jim@apache.org>
Thu, 25 Aug 2011 13:29:39 +0000 (13:29 +0000)
committerJim Jagielski <jim@apache.org>
Thu, 25 Aug 2011 13:29:39 +0000 (13:29 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1161560 13f79535-47bb-0310-9956-ffa450edef68

modules/http/byterange_filter.c

index 46c3c2fc84fa3377ead50c3914e6a6effd9c12e0..79c4a8b668fc72bd0fbfc855c278d3fc29a56682 100644 (file)
@@ -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;
 }