mirror of
https://github.com/apache/httpd.git
synced 2025-08-08 15:02:10 +03:00
Follow up to r1604336: Comment out hooks whose only references are
now commented out, fixing a "-Wunused-function" warning git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1604631 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
@@ -1175,18 +1175,22 @@ static const char *register_filter_function_hook(const char *filter,
|
||||
}
|
||||
return NULL;
|
||||
}
|
||||
/* disabled (see reference below)
|
||||
static int lua_check_user_id_harness_first(request_rec *r)
|
||||
{
|
||||
return lua_request_rec_hook_harness(r, "check_user_id", AP_LUA_HOOK_FIRST);
|
||||
}
|
||||
*/
|
||||
static int lua_check_user_id_harness(request_rec *r)
|
||||
{
|
||||
return lua_request_rec_hook_harness(r, "check_user_id", APR_HOOK_MIDDLE);
|
||||
}
|
||||
/* disabled (see reference below)
|
||||
static int lua_check_user_id_harness_last(request_rec *r)
|
||||
{
|
||||
return lua_request_rec_hook_harness(r, "check_user_id", AP_LUA_HOOK_LAST);
|
||||
}
|
||||
*/
|
||||
|
||||
static int lua_translate_name_harness_first(request_rec *r)
|
||||
{
|
||||
|
Reference in New Issue
Block a user