Return-Path: Delivered-To: apmail-apr-cvs-archive@apr.apache.org Received: (qmail 36853 invoked by uid 500); 11 May 2002 23:29:17 -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 36842 invoked by uid 500); 11 May 2002 23:29:17 -0000 Delivered-To: apmail-apr-util-cvs@apache.org Date: 11 May 2002 23:29:16 -0000 Message-ID: <20020511232916.52519.qmail@icarus.apache.org> From: brianp@apache.org To: apr-util-cvs@apache.org Subject: cvs commit: apr-util/buckets apr_buckets_file.c X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N brianp 02/05/11 16:29:16 Modified: buckets apr_buckets_file.c Log: Added missing initialization for apr_bucket_file->can_mmap Revision Changes Path 1.70 +1 -0 apr-util/buckets/apr_buckets_file.c Index: apr_buckets_file.c =================================================================== RCS file: /home/cvs/apr-util/buckets/apr_buckets_file.c,v retrieving revision 1.69 retrieving revision 1.70 diff -u -r1.69 -r1.70 --- apr_buckets_file.c 11 May 2002 23:10:24 -0000 1.69 +++ apr_buckets_file.c 11 May 2002 23:29:16 -0000 1.70 @@ -198,6 +198,7 @@ f = apr_bucket_alloc(sizeof(*f), b->list); f->fd = fd; f->readpool = p; + f->can_mmap = 1; b = apr_bucket_shared_make(b, f, offset, len); b->type = &apr_bucket_type_file;