Return-Path: Delivered-To: apmail-apr-cvs-archive@www.apache.org Received: (qmail 51117 invoked from network); 3 Sep 2003 18:50:36 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (208.185.179.12) by minotaur-2.apache.org with SMTP; 3 Sep 2003 18:50:36 -0000 Received: (qmail 69254 invoked by uid 500); 3 Sep 2003 18:42:32 -0000 Delivered-To: apmail-apr-cvs-archive@apr.apache.org Received: (qmail 69161 invoked by uid 500); 3 Sep 2003 18:42:30 -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 69086 invoked by uid 500); 3 Sep 2003 18:42:29 -0000 Delivered-To: apmail-apr-util-cvs@apache.org Date: 3 Sep 2003 18:42:33 -0000 Message-ID: <20030903184233.45532.qmail@minotaur.apache.org> From: trawick@apache.org To: apr-util-cvs@apache.org Subject: cvs commit: apr-util/xml apr_xml.c X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N trawick 2003/09/03 11:42:33 Modified: buckets apr_buckets_mmap.c xml apr_xml.c Log: deal with a couple of apr interface changes (renaming one function, removing ignored parameter from another) Revision Changes Path 1.56 +1 -3 apr-util/buckets/apr_buckets_mmap.c Index: apr_buckets_mmap.c =================================================================== RCS file: /home/cvs/apr-util/buckets/apr_buckets_mmap.c,v retrieving revision 1.55 retrieving revision 1.56 diff -u -r1.55 -r1.56 --- apr_buckets_mmap.c 29 Jan 2003 18:16:23 -0000 1.55 +++ apr_buckets_mmap.c 3 Sep 2003 18:42:32 -0000 1.56 @@ -156,9 +156,7 @@ } /* duplicate apr_mmap_t into new pool */ - /* XXX: the transfer_ownership flag on this call - * will go away soon.. it's ignored right now. */ - ok = apr_mmap_dup(&new_mm, mm, p, 1); + ok = apr_mmap_dup(&new_mm, mm, p); if (ok != APR_SUCCESS) { return ok; } 1.27 +1 -1 apr-util/xml/apr_xml.c Index: apr_xml.c =================================================================== RCS file: /home/cvs/apr-util/xml/apr_xml.c,v retrieving revision 1.26 retrieving revision 1.27 diff -u -r1.26 -r1.27 --- apr_xml.c 1 Jan 2003 00:02:23 -0000 1.26 +++ apr_xml.c 3 Sep 2003 18:42:33 -0000 1.27 @@ -391,7 +391,7 @@ parser->xp = XML_ParserCreate(NULL); if (parser->xp == NULL) { - (*apr_pool_get_abort(pool))(APR_ENOMEM); + (*apr_pool_abort_get(pool))(APR_ENOMEM); return NULL; }