From 5cc3c31c77d1c56c05cf13b4953a4440c7352ff8 Mon Sep 17 00:00:00 2001 From: Jeff Trawick Date: Thu, 8 Feb 2001 16:38:11 +0000 Subject: [PATCH] apr_make_array->apr_array_make (if only it were apr_rename.py instead of apr_rename.pl) git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@88024 13f79535-47bb-0310-9956-ffa450edef68 --- modules/dav/main/mod_dav.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/dav/main/mod_dav.c b/modules/dav/main/mod_dav.c index 72213d0b94..169be916dc 100644 --- a/modules/dav/main/mod_dav.c +++ b/modules/dav/main/mod_dav.c @@ -3329,7 +3329,7 @@ static int dav_method_checkout(request_rec *r) else { const ap_xml_elem *child = aset->first_child; - activities = apr_make_array(r->pool, 1, sizeof(const char *)); + activities = apr_array_make(r->pool, 1, sizeof(const char *)); for (; child != NULL; child = child->next) { if (child->ns == AP_XML_NS_DAV_ID -- 2.50.1