From fef85f786995eec282b2e5baeb5da056f9f49d51 Mon Sep 17 00:00:00 2001 From: Nick Kew Date: Tue, 7 Jun 2005 23:45:50 +0000 Subject: [PATCH] Fix for reported compile problem git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@189475 13f79535-47bb-0310-9956-ffa450edef68 --- server/mpm_common.c | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/server/mpm_common.c b/server/mpm_common.c index e6bf91ffbe..619e53892f 100644 --- a/server/mpm_common.c +++ b/server/mpm_common.c @@ -59,16 +59,17 @@ #include #endif -APR_HOOK_STRUCT( #if AP_ENABLE_EXCEPTION_HOOK +APR_HOOK_STRUCT( APR_HOOK_LINK(fatal_exception) -#endif APR_HOOK_LINK(monitor) ) - -#if AP_ENABLE_EXCEPTION_HOOK AP_IMPLEMENT_HOOK_RUN_ALL(int, fatal_exception, (ap_exception_info_t *ei), (ei), OK, DECLINED) +#else +APR_HOOK_STRUCT( + APR_HOOK_LINK(monitor) +) #endif AP_IMPLEMENT_HOOK_RUN_ALL(int, monitor, (apr_pool_t *p), (p), OK, DECLINED) -- 2.40.0