Hi all,
Another doc fix for apr-util.
Regards,
Graham
--
-----------------------------------------
[EMAIL PROTECTED] "There's a moon
over Bourbon Street
tonight..."
--- ../../../pristine/apr-util/include/apr_buckets.h Tue Apr 10 11:30:17 2001
+++ srclib/apr-util/include/apr_buckets.h Tue Apr 10 12:19:12 2001
@@ -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)) {
* ...