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);                                        \
  
  
  

Reply via email to