diff options
author | Ben Laurie <ben@apache.org> | 1999-07-31 11:31:21 +0200 |
---|---|---|
committer | Ben Laurie <ben@apache.org> | 1999-07-31 11:31:21 +0200 |
commit | 76c762ea569dc0f32bd99544d8129ce22f6bf306 (patch) | |
tree | f02d8419d6c83bee6d3adc11df6b6123cdc39e38 | |
parent | Fix PR#4720 (diff) | |
download | apache2-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.c | 4 |
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 |