jwoolley 01/04/10 09:43:46
Modified: include apr_buckets.h
Log:
Fix documentation cut-and-paste errors.
Submitted by: Graham Leggett <[EMAIL PROTECTED]>
Reviewed by: Cliff Woolley
Revision Changes Path
1.92 +4 -4 apr-util/include/apr_buckets.h
Index: apr_buckets.h
===================================================================
RCS file: /home/cvs/apr-util/include/apr_buckets.h,v
retrieving revision 1.91
retrieving revision 1.92
diff -u -d -u -r1.91 -r1.92
--- apr_buckets.h 2001/04/09 19:22:58 1.91
+++ apr_buckets.h 2001/04/10 16:43:45 1.92
@@ -292,14 +292,14 @@
* Return the first bucket in a brigade
* @param b The brigade to query
* @return The first bucket in the brigade
- * @deffunc apr_bucket *APR_BUCKET_FIRST(apr_bucket_brigade *b)
+ * @deffunc apr_bucket *APR_BRIGADE_FIRST(apr_bucket_brigade *b)
*/
#define APR_BRIGADE_FIRST(b) APR_RING_FIRST(&(b)->list)
/**
* Return the last bucket in a brigade
* @param b The brigade to query
* @return The last bucket in the brigade
- * @deffunc apr_bucket *APR_BUCKET_LAST(apr_bucket_brigade *b)
+ * @deffunc apr_bucket *APR_BRIGADE_LAST(apr_bucket_brigade *b)
*/
#define APR_BRIGADE_LAST(b) APR_RING_LAST(&(b)->list)
@@ -309,13 +309,13 @@
* @param b The brigade to iterate over
* @tip This is the same as either:
* <pre>
- * e = APR_BUCKET_FIRST(b);
+ * e = APR_BRIGADE_FIRST(b);
* while (e != APR_BRIGADE_SENTINEL(b)) {
* ...
* e = APR_BUCKET_NEXT(e);
* }
* OR
- * for (e = APR_BUCKET_FIRST(b);
+ * for (e = APR_BRIGADE_FIRST(b);
* e != APR_BRIGADE_SENTINEL(b);
* e = APR_BUCKET_NEXT(e)) {
* ...