summaryrefslogtreecommitdiff
path: root/dso/os2
diff options
context:
space:
mode:
authorrbb <rbb@13f79535-47bb-0310-9956-ffa450edef68>2000-04-14 15:58:54 +0000
committerrbb <rbb@13f79535-47bb-0310-9956-ffa450edef68>2000-04-14 15:58:54 +0000
commit00a9ca6dfcb4118e8b5fd850a29512b6350a64e0 (patch)
treec07dfce5f37b9ffae3b9b7b8b0b435fb98cdc74b /dso/os2
parentcf78e17a5bfa07c2801e0c9005e09496679db918 (diff)
downloadlibapr-00a9ca6dfcb4118e8b5fd850a29512b6350a64e0.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: http://svn.apache.org/repos/asf/apr/apr/trunk@59856 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'dso/os2')
-rw-r--r--dso/os2/dso.c2
-rw-r--r--dso/os2/dso.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/dso/os2/dso.c b/dso/os2/dso.c
index 0873b66eb..25043c130 100644
--- a/dso/os2/dso.c
+++ b/dso/os2/dso.c
@@ -71,7 +71,7 @@ static ap_status_t dso_cleanup(void *thedso)
}
-ap_status_t ap_dso_load(ap_dso_handle_t **res_handle, const char *path, ap_context_t *ctx)
+ap_status_t ap_dso_load(ap_dso_handle_t **res_handle, const char *path, ap_pool_t *ctx)
{
char failed_module[1024];
HMODULE handle;
diff --git a/dso/os2/dso.h b/dso/os2/dso.h
index b71882036..1466a03b9 100644
--- a/dso/os2/dso.h
+++ b/dso/os2/dso.h
@@ -64,7 +64,7 @@
#include "apr_dso.h"
struct ap_dso_handle_t {
- ap_context_t *cont; /* Context for returning error strings */
+ ap_pool_t *cont; /* Context for returning error strings */
HMODULE handle; /* Handle to the DSO loaded */
char *failed_module;
};