From 1e1a5d98c06da9fb27d0a7beab97cc35ee6afe84 Mon Sep 17 00:00:00 2001 From: Ryan Bloom Date: Wed, 19 Apr 2000 21:17:41 +0000 Subject: APR_ENOCONT doesn't make any sense without contexts. Replaced them all with APR_ENOPOOL git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@59892 13f79535-47bb-0310-9956-ffa450edef68 --- threadproc/unix/proc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'threadproc/unix/proc.c') diff --git a/threadproc/unix/proc.c b/threadproc/unix/proc.c index 177c8d984..0d951f852 100644 --- a/threadproc/unix/proc.c +++ b/threadproc/unix/proc.c @@ -366,7 +366,7 @@ ap_status_t ap_put_os_proc(ap_proc_t **proc, ap_os_proc_t *theproc, ap_pool_t *cont) { if (cont == NULL) { - return APR_ENOCONT; + return APR_ENOPOOL; } if ((*proc) == NULL) { (*proc) = (ap_proc_t *)ap_palloc(cont, sizeof(ap_proc_t)); -- cgit v1.2.3