diff options
author | Allan K. Edwards <ake@apache.org> | 2001-01-09 22:38:35 +0100 |
---|---|---|
committer | Allan K. Edwards <ake@apache.org> | 2001-01-09 22:38:35 +0100 |
commit | 06c28466244fa1950658cd1b30a33c146c3863f5 (patch) | |
tree | 531011059bd856a96263c47f004935d1ab1bdc86 /modules/cache | |
parent | Fix a compile break with the new APR libtool setup. Basically, we are (diff) | |
download | apache2-06c28466244fa1950658cd1b30a33c146c3863f5.tar.xz apache2-06c28466244fa1950658cd1b30a33c146c3863f5.zip |
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
Diffstat (limited to 'modules/cache')
-rw-r--r-- | modules/cache/mod_file_cache.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 |