summaryrefslogtreecommitdiff
path: root/include/http_request.h
diff options
context:
space:
mode:
authorDoug MacEachern <dougm@apache.org>2001-02-04 03:00:15 +0000
committerDoug MacEachern <dougm@apache.org>2001-02-04 03:00:15 +0000
commitbcb1a9309e19a1ba5ee6f986d5006e6120bf6a35 (patch)
tree74d6df844108585ef4128264499f9936cbceb5e0 /include/http_request.h
parent0bfb68032f1641bbd748dfaf9c87b27c889b60c5 (diff)
downloadhttpd-bcb1a9309e19a1ba5ee6f986d5006e6120bf6a35.tar.gz
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_request.h')
-rw-r--r--include/http_request.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/include/http_request.h b/include/http_request.h
index 911438a2f4..ac8d308863 100644
--- a/include/http_request.h
+++ b/include/http_request.h
@@ -249,7 +249,7 @@ AP_DECLARE(void) ap_die(int type, request_rec *r);
* @return OK, DECLINED, or HTTP_...
* @deffunc int ap_run_translate_name(request_rec *r)
*/
-AP_DECLARE_HOOK(int,translate_name,(request_rec *))
+AP_DECLARE_HOOK(int,translate_name,(request_rec *r))
/**
* This hook allows modules to check the authentication information sent with
@@ -258,7 +258,7 @@ AP_DECLARE_HOOK(int,translate_name,(request_rec *))
* @return OK, DECLINED, or HTTP_...
* @deffunc int ap_run_check_user_id(request_rec *r)
*/
-AP_DECLARE_HOOK(int,check_user_id,(request_rec *))
+AP_DECLARE_HOOK(int,check_user_id,(request_rec *r))
/**
* Allows modules to perform module-specific fixing of header fields. This
@@ -267,7 +267,7 @@ AP_DECLARE_HOOK(int,check_user_id,(request_rec *))
* @return OK, DECLINED, or HTTP_...
* @deffunc int ap_run_fixups(request_rec *r)
*/
-AP_DECLARE_HOOK(int,fixups,(request_rec *))
+AP_DECLARE_HOOK(int,fixups,(request_rec *r))
/**
* This routine is called to determine and/or set the various document type
@@ -277,7 +277,7 @@ AP_DECLARE_HOOK(int,fixups,(request_rec *))
* @return OK, DECLINED, or HTTP_...
* @deffunc int ap_run_type_checker(request_rec *r)
*/
-AP_DECLARE_HOOK(int,type_checker,(request_rec *))
+AP_DECLARE_HOOK(int,type_checker,(request_rec *r))
/**
* This routine is called to check for any module-specific restrictions placed
@@ -286,7 +286,7 @@ AP_DECLARE_HOOK(int,type_checker,(request_rec *))
* @return OK, DECLINED, or HTTP_...
* @deffunc int ap_run_access_checker(request_rec *r)
*/
-AP_DECLARE_HOOK(int,access_checker,(request_rec *))
+AP_DECLARE_HOOK(int,access_checker,(request_rec *r))
/**
* This routine is called to check to see if the resource being requested
@@ -295,14 +295,14 @@ AP_DECLARE_HOOK(int,access_checker,(request_rec *))
* @return OK, DECLINED, or HTTP_...
* @deffunc int ap_run_auth_checker(request_rec *r)
*/
-AP_DECLARE_HOOK(int,auth_checker,(request_rec *))
+AP_DECLARE_HOOK(int,auth_checker,(request_rec *r))
/**
* This hook allows modules to insert filters for the current request
* @param r the current request
* @deffunc void ap_run_insert_filter(request_rec *r)
*/
-AP_DECLARE_HOOK(void,insert_filter,(request_rec *))
+AP_DECLARE_HOOK(void,insert_filter,(request_rec *r))
#ifdef __cplusplus
}