From 06c28466244fa1950658cd1b30a33c146c3863f5 Mon Sep 17 00:00:00 2001 From: "Allan K. Edwards" Date: Tue, 9 Jan 2001 21:38:35 +0000 Subject: [PATCH] use AP_HOOK_LAST for this module. This may or may not be the final solution but it is at least more correct. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87634 13f79535-47bb-0310-9956-ffa450edef68 --- modules/cache/mod_file_cache.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/cache/mod_file_cache.c b/modules/cache/mod_file_cache.c index 7f409d7895..261dd29802 100644 --- a/modules/cache/mod_file_cache.c +++ b/modules/cache/mod_file_cache.c @@ -480,7 +480,7 @@ AP_INIT_ITERATE("mmapfile", mmapfile, NULL, RSRC_CONF, static void register_hooks(void) { - ap_hook_handler(file_cache_handler, NULL, NULL, AP_HOOK_MIDDLE); + ap_hook_handler(file_cache_handler, NULL, NULL, AP_HOOK_LAST); ap_hook_post_config(file_cache_post_config, NULL, NULL, AP_HOOK_MIDDLE); ap_hook_translate_name(file_cache_xlat, NULL, NULL, AP_HOOK_MIDDLE); /* This trick doesn't work apparently because the translate hooks -- 2.50.1