Commit 1a2437e8 authored by Doug MacEachern's avatar Doug MacEachern
Browse files

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
parent f48f0c07
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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, ':');

+1 −1
Original line number Diff line number Diff line
@@ -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, ':');

+1 −1
Original line number Diff line number Diff line
@@ -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, "../");
+1 −1
Original line number Diff line number Diff line
@@ -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, "../");
+3 −3
Original line number Diff line number Diff line
@@ -392,14 +392,14 @@ int main(int argc, const char * const argv[])
	ap_log_error(APLOG_MARK, APLOG_STARTUP | APLOG_NOERRNO, 0, NULL, "Syntax OK\n");
	destroy_and_exit_process(process, 0);
    }
    apr_clear_pool(plog);
    apr_pool_clear(plog);
    ap_run_open_logs(pconf, plog, ptemp, server_conf);
    ap_post_config_hook(pconf, plog, ptemp, server_conf);
    apr_pool_destroy(ptemp);

    for (;;) {
	apr_hook_deregister_all();
	apr_clear_pool(pconf);
	apr_pool_clear(pconf);
        for (mod = ap_prelinked_modules; *mod != NULL; mod++) {
            ap_register_hooks(*mod, pconf);
        }
@@ -418,7 +418,7 @@ int main(int argc, const char * const argv[])
        ap_fixup_virtual_hosts(pconf, server_conf);
        ap_fini_vhost_config(pconf, server_conf);
        apr_sort_hooks();
	apr_clear_pool(plog);
	apr_pool_clear(plog);
	ap_run_open_logs(pconf, plog, ptemp, server_conf);
	ap_post_config_hook(pconf, plog, ptemp, server_conf);
	apr_pool_destroy(ptemp);
Loading