diff options
author | Jeff Trawick <trawick@apache.org> | 2002-10-16 20:03:44 +0200 |
---|---|---|
committer | Jeff Trawick <trawick@apache.org> | 2002-10-16 20:03:44 +0200 |
commit | 8aab220f594c7ab776db8d755aafeb81d286bc18 (patch) | |
tree | 2d30f5b608682fd8edc889e9ecc23d5962f6f18a /server | |
parent | Updating the NLM descriptions in the NetWare make files (diff) | |
download | apache2-8aab220f594c7ab776db8d755aafeb81d286bc18.tar.xz apache2-8aab220f594c7ab776db8d755aafeb81d286bc18.zip |
don't use deprecated function apr_sort_hooks()
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@97242 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'server')
-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 50d557bda2..8f1cdd5532 100644 --- a/server/main.c +++ b/server/main.c @@ -572,7 +572,7 @@ int main(int argc, const char * const argv[]) ap_process_config_tree(server_conf, ap_conftree, process->pconf, ptemp); ap_fixup_virtual_hosts(pconf, server_conf); ap_fini_vhost_config(pconf, server_conf); - apr_sort_hooks(); + apr_hook_sort_all(); if (configtestonly) { ap_log_error(APLOG_MARK, APLOG_STARTUP, 0, NULL, "Syntax OK"); destroy_and_exit_process(process, 0); @@ -629,7 +629,7 @@ int main(int argc, const char * const argv[]) ap_process_config_tree(server_conf, ap_conftree, process->pconf, ptemp); ap_fixup_virtual_hosts(pconf, server_conf); ap_fini_vhost_config(pconf, server_conf); - apr_sort_hooks(); + apr_hook_sort_all(); apr_pool_clear(plog); if (ap_run_open_logs(pconf, plog, ptemp, server_conf) != OK) { ap_log_error(APLOG_MARK, APLOG_STARTUP |APLOG_ERR, |