]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
* Fix copy and paste error
authorRuediger Pluem <rpluem@apache.org>
Fri, 9 Jun 2023 11:18:02 +0000 (11:18 +0000)
committerRuediger Pluem <rpluem@apache.org>
Fri, 9 Jun 2023 11:18:02 +0000 (11:18 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1910324 13f79535-47bb-0310-9956-ffa450edef68

include/http_request.h
server/request.c

index 6823aea4ffdb76dd11bbc5d9a2d4bf9249b4ec80..55e61ae2416673105a8e169b5fb78a7046d27b37 100644 (file)
@@ -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);
index 27336b69cb507e32f79162bf602a65c33a0a226b..54f656ac7242a7579f6776d86fa2d1117859ce88 100644 (file)
@@ -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)