]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
core_pre_config isn't needed
authorGreg Stein <gstein@apache.org>
Wed, 28 Feb 2001 07:43:12 +0000 (07:43 +0000)
committerGreg Stein <gstein@apache.org>
Wed, 28 Feb 2001 07:43:12 +0000 (07:43 +0000)
Submitted by: Cliff Woolley

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@88384 13f79535-47bb-0310-9956-ffa450edef68

modules/http/http_core.c

index 3ae7c4e7b596f5f45dbdaebee6ebcefc63edc717..92570ed1a4932f8746e7ca630b24cfaf794dd751 100644 (file)
@@ -3366,11 +3366,6 @@ static apr_status_t core_output_filter(ap_filter_t *f, apr_bucket_brigade *b)
     return APR_SUCCESS;
 }
 
-static void core_pre_config(apr_pool_t *pconf, apr_pool_t *plog, apr_pool_t *ptemp)
-{
-    /* XXX: can this function go away completely? -jcw */
-}
-
 static void core_post_config(apr_pool_t *pconf, apr_pool_t *plog, apr_pool_t *ptemp, server_rec *s)
 {
     ap_set_version(pconf);
@@ -3409,7 +3404,6 @@ static void core_insert_filter(request_rec *r)
 
 static void register_hooks(apr_pool_t *p)
 {
-    ap_hook_pre_config(core_pre_config, NULL, NULL, APR_HOOK_REALLY_FIRST);
     ap_hook_post_config(core_post_config,NULL,NULL,APR_HOOK_REALLY_FIRST);
     ap_hook_translate_name(ap_core_translate,NULL,NULL,APR_HOOK_REALLY_LAST);
     ap_hook_pre_connection(ap_pre_http_connection,NULL,NULL,