summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBen Laurie <ben@apache.org>1999-07-31 11:31:21 +0200
committerBen Laurie <ben@apache.org>1999-07-31 11:31:21 +0200
commit76c762ea569dc0f32bd99544d8129ce22f6bf306 (patch)
treef02d8419d6c83bee6d3adc11df6b6123cdc39e38
parentFix PR#4720 (diff)
downloadapache2-76c762ea569dc0f32bd99544d8129ce22f6bf306.tar.xz
apache2-76c762ea569dc0f32bd99544d8129ce22f6bf306.zip
Break out the hook implementations into three kinds, thus avoiding null macro
arguments. Gates made me do it! git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@83546 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--server/connection.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/server/connection.c b/server/connection.c
index 00ea8ab91f..1950069dc7 100644
--- a/server/connection.c
+++ b/server/connection.c
@@ -69,8 +69,8 @@ HOOK_STRUCT(
HOOK_LINK(process_connection)
);
-IMPLEMENT_VOID_HOOK(pre_connection,(conn_rec *c),(c))
-IMPLEMENT_HOOK(int,process_connection,(conn_rec *c),(c),RUN_FIRST,OK,DECLINED)
+IMPLEMENT_HOOK_VOID(pre_connection,(conn_rec *c),(c))
+IMPLEMENT_HOOK_RUN_FIRST(int,process_connection,(conn_rec *c),(c),DECLINED)
/* TODO: re-implement the lingering close stuff */
#define NO_LINGCLOSE