From bcb1a9309e19a1ba5ee6f986d5006e6120bf6a35 Mon Sep 17 00:00:00 2001 From: Doug MacEachern Date: Sun, 4 Feb 2001 03:00:15 +0000 Subject: 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 --- include/http_request.h | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'include/http_request.h') 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 } -- cgit v1.2.1