Commit 78622ea2 authored by David Reid's avatar David Reid
Browse files

Get the beos mpm building again following the recent addition of the

MPM query API.


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@88451 13f79535-47bb-0310-9956-ffa450edef68
parent 1531933d
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -632,13 +632,13 @@ AP_DECLARE(apr_status_t) ap_mpm_query(int query_code, int *result)
{
    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;