Commit 2bfe1bbe authored by Jeff Trawick's avatar Jeff Trawick
Browse files

this patch removes the warning:

warning C4715: 'mpm_service_install' : not all control paths return a value

it would result in a bogus exit status from apache when invoked to install
the service

Submitted by: Ian Holsman <IanH@cnet.com>


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89129 13f79535-47bb-0310-9956-ffa450edef68
parent 846e1628
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -912,6 +912,7 @@ apr_status_t mpm_service_install(apr_pool_t *ptemp, int argc,
        return (rv);
    }
    printf("The %s service is successfully installed.\n", mpm_display_name);
    return APR_SUCCESS;
}