jwoolley 01/08/22 20:58:34
Modified: include apr_buckets.h
Log:
Make the docs for APR_BRIGADE_CONCAT a little more useful
Revision Changes Path
1.113 +2 -2 apr-util/include/apr_buckets.h
Index: apr_buckets.h
===================================================================
RCS file: /home/cvs/apr-util/include/apr_buckets.h,v
retrieving revision 1.112
retrieving revision 1.113
diff -u -d -u -r1.112 -r1.113
--- apr_buckets.h 2001/08/10 21:38:16 1.112
+++ apr_buckets.h 2001/08/23 03:58:34 1.113
@@ -220,7 +220,7 @@
* apr_bucket structures are allocated on the malloc() heap and
* their lifetime is controlled by the parent apr_bucket_brigade
* structure. Buckets can move from one brigade to another e.g. by
- * calling apr_brigade_concat(). In general the data in a bucket has
+ * calling APR_BRIGADE_CONCAT(). In general the data in a bucket has
* the same lifetime as the bucket and is freed when the bucket is
* destroyed; if the data is shared by more than one bucket (e.g.
* after a split) the data is freed when the last bucket goes away.
@@ -383,7 +383,7 @@
} while (0)
/**
- * Concatenate two brigades together
+ * Concatenate brigade b onto the end of brigade a, leaving brigade b empty
* @param a The first brigade
* @param b The second brigade
* @deffunc void APR_BRIGADE_CONCAT(apr_bucket_brigade *a,
apr_bucket_brigade *b)