]> granicus.if.org Git - apache/commitdiff
Cleanup the buckets a bit, and add ScanDoc comments. The cleanup was
authorRyan Bloom <rbb@apache.org>
Sun, 13 Aug 2000 00:53:43 +0000 (00:53 +0000)
committerRyan Bloom <rbb@apache.org>
Sun, 13 Aug 2000 00:53:43 +0000 (00:53 +0000)
basically removing functions that aren't really necessary anymore.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86063 13f79535-47bb-0310-9956-ffa450edef68

modules/http/http_core.c

index de478a4d886c681bdd525966fe905fd049b1c5e0..cadfaf0cc64055c4325d338c8353475a887e425a 100644 (file)
@@ -2946,7 +2946,7 @@ static int core_filter(ap_filter_t *f, ap_bucket_brigade *b)
      */
     dptr = b->head; 
     while (dptr) { 
-        len += ap_get_bucket_len(dptr);
+        len += dptr->length;
         dptr = dptr->next;
     }
     if (len < MIN_SIZE_TO_WRITE && b->tail->color != AP_BUCKET_EOS) {