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;
}