From: Jeff Trawick Date: Wed, 16 May 2001 18:38:36 +0000 (+0000) Subject: this patch removes the warning: X-Git-Tag: 2.0.18~17 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c8620d7628827025bb6ad2715903958fc9c552a3;p=thirdparty%2Fapache%2Fhttpd.git 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 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89129 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/mpm/winnt/service.c b/server/mpm/winnt/service.c index ac88e236c4e..474402a0b58 100644 --- a/server/mpm/winnt/service.c +++ b/server/mpm/winnt/service.c @@ -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; }