diff options
author | Doug MacEachern <dougm@apache.org> | 2001-02-23 19:17:19 +0100 |
---|---|---|
committer | Doug MacEachern <dougm@apache.org> | 2001-02-23 19:17:19 +0100 |
commit | 24e2ea6b10ffc502cebc79107e9bcb9bcd661392 (patch) | |
tree | 0c7304d59c18067ba62eab82cdaba77a39db6a52 /server/main.c | |
parent | Remove the b1 description from ap_release. It doesn't belong there anymore. (diff) | |
download | apache2-24e2ea6b10ffc502cebc79107e9bcb9bcd661392.tar.xz apache2-24e2ea6b10ffc502cebc79107e9bcb9bcd661392.zip |
remove ap_{post_config,child_init}_hook
replace usage with ap_run_{post_config,child_init}
PR:
Obtained from:
Submitted by:
Reviewed by:
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@88291 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'server/main.c')
-rw-r--r-- | server/main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/server/main.c b/server/main.c index b660599a67..8f4c2075cc 100644 --- a/server/main.c +++ b/server/main.c @@ -394,7 +394,7 @@ int main(int argc, const char * const argv[]) } apr_pool_clear(plog); ap_run_open_logs(pconf, plog, ptemp, server_conf); - ap_post_config_hook(pconf, plog, ptemp, server_conf); + ap_run_post_config(pconf, plog, ptemp, server_conf); apr_pool_destroy(ptemp); for (;;) { @@ -420,7 +420,7 @@ int main(int argc, const char * const argv[]) apr_sort_hooks(); apr_pool_clear(plog); ap_run_open_logs(pconf, plog, ptemp, server_conf); - ap_post_config_hook(pconf, plog, ptemp, server_conf); + ap_run_post_config(pconf, plog, ptemp, server_conf); apr_pool_destroy(ptemp); ap_run_optional_fn_retrieve(); |