You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by ni...@apache.org on 2005/06/08 01:45:51 UTC

svn commit: r189475 - /httpd/httpd/trunk/server/mpm_common.c

Author: niq
Date: Tue Jun  7 16:45:50 2005
New Revision: 189475

URL: http://svn.apache.org/viewcvs?rev=189475&view=rev
Log:
Fix for reported compile problem

Modified:
    httpd/httpd/trunk/server/mpm_common.c

Modified: httpd/httpd/trunk/server/mpm_common.c
URL: http://svn.apache.org/viewcvs/httpd/httpd/trunk/server/mpm_common.c?rev=189475&r1=189474&r2=189475&view=diff
==============================================================================
--- httpd/httpd/trunk/server/mpm_common.c (original)
+++ httpd/httpd/trunk/server/mpm_common.c Tue Jun  7 16:45:50 2005
@@ -59,16 +59,17 @@
 #include <unistd.h>
 #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)