summaryrefslogtreecommitdiffstats
path: root/modules
diff options
context:
space:
mode:
authorDoug MacEachern <dougm@apache.org>2001-02-19 03:06:58 +0100
committerDoug MacEachern <dougm@apache.org>2001-02-19 03:06:58 +0100
commit18f173e91811378937addcc3e98b6b7bc886c575 (patch)
tree8816710b45730a0ac2abfc0c86c2a1c36fa3504a /modules
parentIntermediate change of hardcoded "helpers" reference to "build" (diff)
downloadapache2-18f173e91811378937addcc3e98b6b7bc886c575.tar.xz
apache2-18f173e91811378937addcc3e98b6b7bc886c575.zip
rename miss: s/apr_clear_pool/apr_pool_clear/g
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@88232 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules')
-rw-r--r--modules/aaa/mod_auth.c2
-rw-r--r--modules/aaa/mod_auth_digest.c2
-rw-r--r--modules/generators/mod_autoindex.c2
-rw-r--r--modules/test/mod_autoindex.c2
4 files changed, 4 insertions, 4 deletions
diff --git a/modules/aaa/mod_auth.c b/modules/aaa/mod_auth.c
index 84779fe84a..d96d2f2fd9 100644
--- a/modules/aaa/mod_auth.c
+++ b/modules/aaa/mod_auth.c
@@ -173,7 +173,7 @@ static apr_table_t *groups_for_user(apr_pool_t *p, char *user, char *grpfile)
if ((l[0] == '#') || (!l[0]))
continue;
ll = l;
- apr_clear_pool(sp);
+ apr_pool_clear(sp);
group_name = ap_getword(sp, &ll, ':');
diff --git a/modules/aaa/mod_auth_digest.c b/modules/aaa/mod_auth_digest.c
index 8c95d3385d..3413270281 100644
--- a/modules/aaa/mod_auth_digest.c
+++ b/modules/aaa/mod_auth_digest.c
@@ -1795,7 +1795,7 @@ static apr_table_t *groups_for_user(request_rec *r, const char *user,
if ((l[0] == '#') || (!l[0]))
continue;
ll = l;
- apr_clear_pool(sp);
+ apr_pool_clear(sp);
group_name = ap_getword(sp, &ll, ':');
diff --git a/modules/generators/mod_autoindex.c b/modules/generators/mod_autoindex.c
index 6b8eb5cfa1..600ade804a 100644
--- a/modules/generators/mod_autoindex.c
+++ b/modules/generators/mod_autoindex.c
@@ -1373,7 +1373,7 @@ static void output_directories(struct ent **ar, int n,
char *anchor, *t, *t2;
int nwidth;
- apr_clear_pool(scratch);
+ apr_pool_clear(scratch);
if (is_parent(ar[x]->name)) {
t = ap_make_full_path(scratch, name, "../");
diff --git a/modules/test/mod_autoindex.c b/modules/test/mod_autoindex.c
index 903eca0986..bc0be1ea14 100644
--- a/modules/test/mod_autoindex.c
+++ b/modules/test/mod_autoindex.c
@@ -1372,7 +1372,7 @@ static void output_directories(struct ent **ar, int n,
char *anchor, *t, *t2;
int nwidth;
- apr_clear_pool(scratch);
+ apr_pool_clear(scratch);
if (is_parent(ar[x]->name)) {
t = ap_make_full_path(scratch, name, "../");