diff options
author | William A. Rowe Jr <wrowe@apache.org> | 2001-08-02 07:25:53 +0200 |
---|---|---|
committer | William A. Rowe Jr <wrowe@apache.org> | 2001-08-02 07:25:53 +0200 |
commit | 7dbda3a1034c89132bb7207e75cd5c41d7c37ed7 (patch) | |
tree | 5d667e365d5f6a557f4592a326e9a0f070f3baf6 /modules/test | |
parent | Make the includes filter check return codes from filters lower in (diff) | |
download | apache2-7dbda3a1034c89132bb7207e75cd5c41d7c37ed7.tar.xz apache2-7dbda3a1034c89132bb7207e75cd5c41d7c37ed7.zip |
Adapt to changed declaration of apr_pool_sub_make()
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89871 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/test')
-rw-r--r-- | modules/test/mod_test_util_uri.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/test/mod_test_util_uri.c b/modules/test/mod_test_util_uri.c index dbe340568d..3baae44bbd 100644 --- a/modules/test/mod_test_util_uri.c +++ b/modules/test/mod_test_util_uri.c @@ -207,7 +207,7 @@ static unsigned iterate_pieces(request_rec *r, const test_uri_t *pieces, int row } *strp = 0; - sub = apr_pool_sub_make(r->pool); + apr_pool_sub_make(&sub, r->pool, NULL); status = apr_uri_parse_components(sub, input_uri, &result); if (status == APR_SUCCESS) { #define CHECK(f) \ |