summaryrefslogtreecommitdiffstats
path: root/modules/mappers/mod_actions.c
diff options
context:
space:
mode:
authorDoug MacEachern <dougm@apache.org>2001-01-09 00:55:12 +0100
committerDoug MacEachern <dougm@apache.org>2001-01-09 00:55:12 +0100
commit40391fb9f2ccaf8c4f0e65d6de6de67ad5927690 (patch)
tree68af22e109e5ee0e1b68eb2f3022101309181169 /modules/mappers/mod_actions.c
parentfix handlers->hooks compile breakage (diff)
downloadapache2-40391fb9f2ccaf8c4f0e65d6de6de67ad5927690.tar.xz
apache2-40391fb9f2ccaf8c4f0e65d6de6de67ad5927690.zip
adjust remaining modules to use the new handler hook method (Alan Edwards)
bring back the old handler prototype by reusing r->handler (dougm) PR: Obtained from: Submitted by: Reviewed by: git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87617 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/mappers/mod_actions.c')
-rw-r--r--modules/mappers/mod_actions.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/mappers/mod_actions.c b/modules/mappers/mod_actions.c
index 31639a2235..5c400bc477 100644
--- a/modules/mappers/mod_actions.c
+++ b/modules/mappers/mod_actions.c
@@ -158,7 +158,7 @@ static const command_rec action_cmds[] =
{NULL}
};
-static int action_handler(const char *handler,request_rec *r)
+static int action_handler(request_rec *r)
{
action_dir_config *conf = (action_dir_config *)
ap_get_module_config(r->per_dir_config, &action_module);