Return-Path: Delivered-To: apmail-apr-cvs-archive@apr.apache.org Received: (qmail 54381 invoked by uid 500); 9 Apr 2001 19:22:58 -0000 Mailing-List: contact cvs-help@apr.apache.org; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: Reply-To: dev@apr.apache.org Delivered-To: mailing list cvs@apr.apache.org Received: (qmail 54370 invoked by uid 500); 9 Apr 2001 19:22:58 -0000 Delivered-To: apmail-apr-util-cvs@apache.org Date: 9 Apr 2001 19:22:58 -0000 Message-ID: <20010409192258.54366.qmail@apache.org> From: gregames@apache.org To: apr-util-cvs@apache.org Subject: cvs commit: apr-util/include apr_buckets.h gregames 01/04/09 12:22:58 Modified: include apr_buckets.h Log: fix the doc for APR_BRIGADE_INSERT_TAIL Submitted by: Graham Leggett Reviewed by: Greg Ames Revision Changes Path 1.91 +1 -1 apr-util/include/apr_buckets.h Index: apr_buckets.h =================================================================== RCS file: /home/cvs/apr-util/include/apr_buckets.h,v retrieving revision 1.90 retrieving revision 1.91 diff -u -d -b -u -r1.90 -r1.91 --- apr_buckets.h 2001/04/03 01:49:54 1.90 +++ apr_buckets.h 2001/04/09 19:22:58 1.91 @@ -341,7 +341,7 @@ * Insert a list of buckets at the end of a brigade * @param b The brigade to add to * @param e The first bucket in a list of buckets to insert - * @deffunc void APR_BRIGADE_INSERT_HEAD(apr_bucket_brigade *b, apr_bucket *e) + * @deffunc void APR_BRIGADE_INSERT_TAIL(apr_bucket_brigade *b, apr_bucket *e) */ #define APR_BRIGADE_INSERT_TAIL(b, e) do { \ apr_bucket *ap__b = (e); \