diff options
Diffstat (limited to 'misc/beos/start.c')
-rw-r--r-- | misc/beos/start.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/misc/beos/start.c b/misc/beos/start.c index f009e6a4d..32d8ebf08 100644 --- a/misc/beos/start.c +++ b/misc/beos/start.c @@ -54,7 +54,7 @@ #include "misc.h" -ap_status_t ap_create_context(struct context_t **newcont, struct context_t *cont) +ap_status_t ap_create_context(struct ap_context_t **newcont, struct ap_context_t *cont) { ap_context_t *new; ap_pool_t *pool; @@ -70,7 +70,7 @@ ap_status_t ap_create_context(struct context_t **newcont, struct context_t *cont return APR_ENOPOOL; } - new = (struct context_t *)ap_palloc(cont, sizeof(struct context_t)); + new = (struct ap_context_t *)ap_palloc(cont, sizeof(struct ap_context_t)); new->pool = pool; new->prog_data = NULL; @@ -87,7 +87,7 @@ ap_status_t ap_destroy_context(ap_context_t *cont) ap_status_t ap_set_userdata(void *data, char *key, ap_status_t (*cleanup) (void *), - struct context_t *cont) + struct ap_context_t *cont) { datastruct *dptr = NULL, *dptr2 = NULL; if (cont) { @@ -117,7 +117,7 @@ ap_status_t ap_set_userdata(void *data, char *key, return APR_ENOCONT; } -ap_status_t ap_get_userdata(void **data, char *key, struct context_t *cont) +ap_status_t ap_get_userdata(void **data, char *key, struct ap_context_t *cont) { datastruct *dptr = NULL; if (cont) { |