From 874b4c7efca392e08a4655514e1d2a352b07dae7 Mon Sep 17 00:00:00 2001 From: Ryan Bloom Date: Sun, 21 Jan 2001 05:21:32 +0000 Subject: [PATCH] Add a call to apr_hook_deregister_all() in the clear_module_list function. The basic problem was that when we load the modules, we call the register_hooks() function from the module, but then we clear the module list for all active modules, and add them back in one at a time. When we add them back, we re-call the register_hooks() function, thus adding each function a second time. This was causing apache.org to log every request twice in the access log. By calling apr_hook_deregister_all() when we unload the module, the second call to register the hooks is the only call that matters. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87774 13f79535-47bb-0310-9956-ffa450edef68 --- server/config.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/server/config.c b/server/config.c index 290f966cc6..17ba11e759 100644 --- a/server/config.c +++ b/server/config.c @@ -591,6 +591,8 @@ AP_DECLARE(void) ap_clear_module_list(apr_pool_t *p) m = next_m; } + apr_hook_deregister_all(); + /* This is required; so we add it always. */ ap_add_named_module("http_core.c", p); } -- 2.50.1