summaryrefslogtreecommitdiff
path: root/misc/win32/start.c
diff options
context:
space:
mode:
authorrbb <rbb@13f79535-47bb-0310-9956-ffa450edef68>2000-04-19 21:17:41 +0000
committerrbb <rbb@13f79535-47bb-0310-9956-ffa450edef68>2000-04-19 21:17:41 +0000
commit2ca520da1d79bb275fed81178287c13ef1cf7600 (patch)
tree4c8fb27fa11ce48f7ddad25d81317365b8c1094e /misc/win32/start.c
parentf926b39a62273d0380c539921eb0b4472dddf3e5 (diff)
downloadlibapr-2ca520da1d79bb275fed81178287c13ef1cf7600.tar.gz
APR_ENOCONT doesn't make any sense without contexts. Replaced them all with
APR_ENOPOOL git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@59892 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'misc/win32/start.c')
-rw-r--r--misc/win32/start.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/misc/win32/start.c b/misc/win32/start.c
index 651b133c5..c776af80f 100644
--- a/misc/win32/start.c
+++ b/misc/win32/start.c
@@ -198,7 +198,7 @@ ap_status_t ap_set_userdata(void *data, char *key,
ap_register_cleanup(cont, dptr->data, cleanup, cleanup);
return APR_SUCCESS;
}
- return APR_ENOCONT;
+ return APR_ENOPOOL;
}
ap_status_t ap_get_userdata(void **data, char *key, ap_pool_t *cont)
@@ -220,7 +220,7 @@ ap_status_t ap_get_userdata(void **data, char *key, ap_pool_t *cont)
}
return APR_SUCCESS;
}
- return APR_ENOCONT;
+ return APR_ENOPOOL;
}
/* This is the helper code to resolve late bound entry points