Return-Path: Delivered-To: apmail-apr-cvs-archive@apr.apache.org Received: (qmail 24542 invoked by uid 500); 3 Sep 2001 22:02:46 -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 24531 invoked by uid 500); 3 Sep 2001 22:02:45 -0000 Delivered-To: apmail-apr-util-cvs@apache.org Date: 3 Sep 2001 22:00:37 -0000 Message-ID: <20010903220037.93900.qmail@icarus.apache.org> From: jwoolley@apache.org To: apr-util-cvs@apache.org Subject: cvs commit: apr-util/buckets apr_brigade.c X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N 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;