summaryrefslogtreecommitdiffstats
path: root/include/http_connection.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/http_connection.h')
-rw-r--r--include/http_connection.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/http_connection.h b/include/http_connection.h
index 1af06390a3..82c3135e6e 100644
--- a/include/http_connection.h
+++ b/include/http_connection.h
@@ -129,7 +129,7 @@ void ap_lingering_close(conn_rec *);
* @return OK or DECLINED
* @deffunc int ap_run_pre_connection(conn_rec *c)
*/
-AP_DECLARE_HOOK(int,pre_connection,(conn_rec *))
+AP_DECLARE_HOOK(int,pre_connection,(conn_rec *c))
/**
* This hook implements different protocols. After a connection has been
@@ -140,7 +140,7 @@ AP_DECLARE_HOOK(int,pre_connection,(conn_rec *))
* @return OK or DECLINED
* @deffunc int ap_run_process_connection(conn_rec *c)
*/
-AP_DECLARE_HOOK(int,process_connection,(conn_rec *))
+AP_DECLARE_HOOK(int,process_connection,(conn_rec *c))
#ifdef __cplusplus
}