summaryrefslogtreecommitdiffstats
path: root/server/mpm/prefork
diff options
context:
space:
mode:
authorCliff Woolley <jwoolley@apache.org>2001-11-07 06:29:58 +0100
committerCliff Woolley <jwoolley@apache.org>2001-11-07 06:29:58 +0100
commit4421663d68e55cc7d19b8b1fcfab18863ce00ca5 (patch)
tree536171e4f61d4d44f993bd5ca2746603bf1ca4c1 /server/mpm/prefork
parentA few missing MPM descriptions... (diff)
downloadapache2-4421663d68e55cc7d19b8b1fcfab18863ce00ca5.tar.xz
apache2-4421663d68e55cc7d19b8b1fcfab18863ce00ca5.zip
Fix the spelling of the AP_MPMQ_MIN_SPARE_DAEMONS and
AP_MPMQ_MAX_REQUESTS_DAEMON macros. Better to do it now rather than later. **WARNING** This will of course break the compile on any third-party MPMs you might have floating around, but it's a really quick change to make. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@91777 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'server/mpm/prefork')
-rw-r--r--server/mpm/prefork/prefork.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/server/mpm/prefork/prefork.c b/server/mpm/prefork/prefork.c
index 070dd86566..82157db185 100644
--- a/server/mpm/prefork/prefork.c
+++ b/server/mpm/prefork/prefork.c
@@ -314,7 +314,7 @@ AP_DECLARE(apr_status_t) ap_mpm_query(int query_code, int *result)
case AP_MPMQ_MAX_THREADS:
*result = 0;
return APR_SUCCESS;
- case AP_MPMQ_MIN_SPARE_DEAMONS:
+ case AP_MPMQ_MIN_SPARE_DAEMONS:
*result = ap_daemons_min_free;
return APR_SUCCESS;
case AP_MPMQ_MIN_SPARE_THREADS:
@@ -326,7 +326,7 @@ AP_DECLARE(apr_status_t) ap_mpm_query(int query_code, int *result)
case AP_MPMQ_MAX_SPARE_THREADS:
*result = 0;
return APR_SUCCESS;
- case AP_MPMQ_MAX_REQUESTS_DEAMON:
+ case AP_MPMQ_MAX_REQUESTS_DAEMON:
*result = ap_max_requests_per_child;
return APR_SUCCESS;
case AP_MPMQ_MAX_DAEMONS: