diff options
author | Ryan Bloom <rbb@apache.org> | 2000-04-14 15:59:20 +0000 |
---|---|---|
committer | Ryan Bloom <rbb@apache.org> | 2000-04-14 15:59:20 +0000 |
commit | de3a77dc016d09f7a065448efa3c745b73cf9c42 (patch) | |
tree | 67f5e3fba093eb416fe4bbca701cd6187d3364cc /modules/mappers/mod_actions.c | |
parent | 20325a811b58ae116684b85e4600c9c0418a073a (diff) | |
download | httpd-de3a77dc016d09f7a065448efa3c745b73cf9c42.tar.gz |
Change ap_context_t to ap_pool_t. This compiles, runs, and serves pages
on Linux, but probably breaks somewhere.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@84963 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/mappers/mod_actions.c')
-rw-r--r-- | modules/mappers/mod_actions.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/mappers/mod_actions.c b/modules/mappers/mod_actions.c index 4960ab62bc..dd5c32e02c 100644 --- a/modules/mappers/mod_actions.c +++ b/modules/mappers/mod_actions.c @@ -95,7 +95,7 @@ typedef struct { module action_module; -static void *create_action_dir_config(ap_context_t *p, char *dummy) +static void *create_action_dir_config(ap_pool_t *p, char *dummy) { action_dir_config *new = (action_dir_config *) ap_palloc(p, sizeof(action_dir_config)); @@ -106,7 +106,7 @@ static void *create_action_dir_config(ap_context_t *p, char *dummy) return new; } -static void *merge_action_dir_configs(ap_context_t *p, void *basev, void *addv) +static void *merge_action_dir_configs(ap_pool_t *p, void *basev, void *addv) { action_dir_config *base = (action_dir_config *) basev; action_dir_config *add = (action_dir_config *) addv; |