dreid 01/03/04 10:13:33
Modified: server/mpm/beos beos.c
Log:
Get the beos mpm building again following the recent addition of the
MPM query API.
Revision Changes Path
1.48 +2 -2 httpd-2.0/server/mpm/beos/beos.c
Index: beos.c
===================================================================
RCS file: /home/cvs/httpd-2.0/server/mpm/beos/beos.c,v
retrieving revision 1.47
retrieving revision 1.48
diff -u -r1.47 -r1.48
--- beos.c 2001/03/02 22:46:31 1.47
+++ beos.c 2001/03/04 18:13:32 1.48
@@ -632,13 +632,13 @@
{
switch(query_code){
case AP_MPMQ_MAX_DAEMONS:
- *result = ap_max_daemons_limit;
+ *result = ap_max_child_assigned;
return APR_SUCCESS;
case AP_MPMQ_IS_THREADED:
*result = 1;
return APR_SUCCESS;
case AP_MPMQ_IS_FORKED:
- *result = 1;
+ *result = 0;
return APR_SUCCESS;
}
return APR_ENOTIMPL;
|