You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by jw...@apache.org on 2001/09/04 00:00:37 UTC

cvs commit: apr-util/buckets apr_brigade.c

jwoolley    01/09/03 15:00:36

  Modified:    buckets  apr_brigade.c
  Log:
  fix typo
  
  Revision  Changes    Path
  1.25      +4 -4      apr-util/buckets/apr_brigade.c
  
  Index: apr_brigade.c
  ===================================================================
  RCS file: /home/cvs/apr-util/buckets/apr_brigade.c,v
  retrieving revision 1.24
  retrieving revision 1.25
  diff -u -d -u -r1.24 -r1.25
  --- apr_brigade.c	2001/08/26 03:15:37	1.24
  +++ apr_brigade.c	2001/09/03 22:00:36	1.25
  @@ -384,7 +384,7 @@
       return rv;
   }
   
  -struct bridgade_vprintf_data_t {
  +struct brigade_vprintf_data_t {
       apr_vformatter_buff_t vbuff;
   
       apr_bucket_brigade *b;  /* associated brigade */
  @@ -401,8 +401,8 @@
        * buff.curpos > buff.endpos
        */
   
  -    /* "downcast," have really passed a bridgade_vprintf_data_t* */
  -    struct bridgade_vprintf_data_t *vd = (struct bridgade_vprintf_data_t*)buff;
  +    /* "downcast," have really passed a brigade_vprintf_data_t* */
  +    struct brigade_vprintf_data_t *vd = (struct brigade_vprintf_data_t*)buff;
       apr_status_t res = APR_SUCCESS;
   
       res = apr_brigade_write(vd->b, *vd->flusher, vd->ctx, vd->cbuff,
  @@ -424,7 +424,7 @@
                                                 const char *fmt, va_list va)
   {
       /* the cast, in order of appearance */
  -    struct bridgade_vprintf_data_t vd;
  +    struct brigade_vprintf_data_t vd;
       char buf[APR_BUCKET_BUFF_SIZE];
       apr_size_t written;