diff options
author | Ryan Bloom <rbb@apache.org> | 2000-04-14 17:59:20 +0200 |
---|---|---|
committer | Ryan Bloom <rbb@apache.org> | 2000-04-14 17:59:20 +0200 |
commit | de3a77dc016d09f7a065448efa3c745b73cf9c42 (patch) | |
tree | 67f5e3fba093eb416fe4bbca701cd6187d3364cc /modules/echo/mod_echo.c | |
parent | Fix minor configuration & platform dependencies (diff) | |
download | apache2-de3a77dc016d09f7a065448efa3c745b73cf9c42.tar.xz apache2-de3a77dc016d09f7a065448efa3c745b73cf9c42.zip |
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/echo/mod_echo.c')
-rw-r--r-- | modules/echo/mod_echo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/echo/mod_echo.c b/modules/echo/mod_echo.c index dcf722baaa..57b9e34280 100644 --- a/modules/echo/mod_echo.c +++ b/modules/echo/mod_echo.c @@ -69,7 +69,7 @@ typedef struct int bEnabled; } EchoConfig; -static void *create_echo_server_config(ap_context_t *p,server_rec *s) +static void *create_echo_server_config(ap_pool_t *p,server_rec *s) { EchoConfig *pConfig=ap_pcalloc(p,sizeof *pConfig); |