Return-Path: Delivered-To: apmail-apr-cvs-archive@apr.apache.org Received: (qmail 64287 invoked by uid 500); 7 Jun 2001 12:11:22 -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 64269 invoked by uid 500); 7 Jun 2001 12:11:18 -0000 Delivered-To: apmail-apr-util-cvs@apache.org Date: 7 Jun 2001 12:11:15 -0000 Message-ID: <20010607121115.64248.qmail@apache.org> From: trawick@apache.org To: apr-util-cvs@apache.org Subject: cvs commit: apr-util/include apr_buckets.h trawick 01/06/07 05:11:15 Modified: include apr_buckets.h Log: fix a typo in the definition of apr_bucket_read() (Greg must be using Ryan's compiler) Revision Changes Path 1.96 +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.95 retrieving revision 1.96 diff -u -r1.95 -r1.96 --- apr_buckets.h 2001/06/07 10:13:30 1.95 +++ apr_buckets.h 2001/06/07 12:11:12 1.96 @@ -796,7 +796,7 @@ * @param block Whether the read function blocks * @deffunc apr_status_t apr_bucket_read(apr_bucket *e, const char **str, apr_size_t *len, apr_read_type_e block) */ -#define apr_bucket_read(e,str,len,block) (e)e->type->read(e, str, len, block) +#define apr_bucket_read(e,str,len,block) (e)->type->read(e, str, len, block) /** * Setaside data so that stack data is not destroyed on returning from