diff options
-rw-r--r-- | include/http_request.h | 2 | ||||
-rw-r--r-- | server/request.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/include/http_request.h b/include/http_request.h index 6823aea4ff..55e61ae241 100644 --- a/include/http_request.h +++ b/include/http_request.h @@ -543,7 +543,7 @@ AP_DECLARE(void) ap_hook_check_access_ex(ap_HOOK_access_checker_ex_t *pf, * @param type Internal request processing mode, either * AP_AUTH_INTERNAL_PER_URI or AP_AUTH_INTERNAL_PER_CONF */ -AP_DECLARE(void) ap_hook_check_autht(ap_HOOK_check_user_id_t *pf, +AP_DECLARE(void) ap_hook_check_autht(ap_HOOK_token_checker_t *pf, const char * const *aszPre, const char * const *aszSucc, int nOrder, int type); diff --git a/server/request.c b/server/request.c index 27336b69cb..54f656ac72 100644 --- a/server/request.c +++ b/server/request.c @@ -2234,7 +2234,7 @@ AP_DECLARE(void) ap_hook_check_access_ex(ap_HOOK_access_checker_ex_t *pf, ap_hook_access_checker_ex(pf, aszPre, aszSucc, nOrder); } -AP_DECLARE(void) ap_hook_check_autht(ap_HOOK_check_user_id_t *pf, +AP_DECLARE(void) ap_hook_check_autht(ap_HOOK_token_checker_t *pf, const char * const *aszPre, const char * const *aszSucc, int nOrder, int type) |