diff options
author | Ryan Bloom <rbb@apache.org> | 2000-04-19 21:17:41 +0000 |
---|---|---|
committer | Ryan Bloom <rbb@apache.org> | 2000-04-19 21:17:41 +0000 |
commit | 1e1a5d98c06da9fb27d0a7beab97cc35ee6afe84 (patch) | |
tree | 4c8fb27fa11ce48f7ddad25d81317365b8c1094e /threadproc/unix/proc.c | |
parent | 999d73a446d00747c03998d19dd721252d7945a3 (diff) | |
download | apr-1e1a5d98c06da9fb27d0a7beab97cc35ee6afe84.tar.gz apr-1e1a5d98c06da9fb27d0a7beab97cc35ee6afe84.zip |
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
Diffstat (limited to 'threadproc/unix/proc.c')
-rw-r--r-- | threadproc/unix/proc.c | 2 |
1 files changed, 1 insertions, 1 deletions
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)); |