summaryrefslogtreecommitdiffstats
path: root/include/http_connection.h
diff options
context:
space:
mode:
authorDoug MacEachern <dougm@apache.org>2001-02-04 04:00:15 +0100
committerDoug MacEachern <dougm@apache.org>2001-02-04 04:00:15 +0100
commitbcb1a9309e19a1ba5ee6f986d5006e6120bf6a35 (patch)
tree74d6df844108585ef4128264499f9936cbceb5e0 /include/http_connection.h
parentSo server-status displays "Server uptime" correctly (diff)
downloadapache2-bcb1a9309e19a1ba5ee6f986d5006e6120bf6a35.tar.xz
apache2-bcb1a9309e19a1ba5ee6f986d5006e6120bf6a35.zip
fix minor prototype inconsistencies noticed with C::Scan
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87970 13f79535-47bb-0310-9956-ffa450edef68
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
}