summaryrefslogtreecommitdiff
path: root/buckets/apr_buckets_refcount.c
diff options
context:
space:
mode:
authorfanf <fanf@13f79535-47bb-0310-9956-ffa450edef68>2000-09-09 06:48:08 +0000
committerfanf <fanf@13f79535-47bb-0310-9956-ffa450edef68>2000-09-09 06:48:08 +0000
commit8c0c4a5bfdf1cd9127fa2d3a3a51140a85ec5dfd (patch)
tree5a10e54711731132d1b0e66090251ca827a05872 /buckets/apr_buckets_refcount.c
parenta5af59b66ede47cc7b30023284122d6758aa5565 (diff)
downloadlibapr-util-8c0c4a5bfdf1cd9127fa2d3a3a51140a85ec5dfd.tar.gz
Use wrapper macros to avoid the verbosity of the AP_RING macros when
doing things with bucket brigades. git-svn-id: http://svn.apache.org/repos/asf/apr/apr-util/trunk@57869 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'buckets/apr_buckets_refcount.c')
-rw-r--r--buckets/apr_buckets_refcount.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/buckets/apr_buckets_refcount.c b/buckets/apr_buckets_refcount.c
index 48fec55c..10e0eec2 100644
--- a/buckets/apr_buckets_refcount.c
+++ b/buckets/apr_buckets_refcount.c
@@ -90,7 +90,7 @@ API_EXPORT_NONSTD(apr_status_t) ap_bucket_split_shared(ap_bucket *a, apr_off_t p
b->length -= point;
bd->start += point;
- AP_RING_INSERT_AFTER(a, b, link);
+ AP_BUCKET_INSERT_AFTER(a, b);
return APR_SUCCESS;
}