From: Ryan Bloom Date: Wed, 26 Jul 2000 13:48:17 +0000 (+0000) Subject: Fix an error in service.c, where we were returning APR_NOTFOUND and X-Git-Tag: APACHE_2_0_ALPHA_5~81 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f308d7ce6df6b5015a1eed85d34e1377a36a91a1;p=apache Fix an error in service.c, where we were returning APR_NOTFOUND and should have been return APR_ENOFILE Submitted by: Gregory Nicholls Reviewed by: Ryan Bloom git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85892 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/mpm/winnt/service.c b/server/mpm/winnt/service.c index b81528e032..3e5b177008 100644 --- a/server/mpm/winnt/service.c +++ b/server/mpm/winnt/service.c @@ -657,7 +657,7 @@ ap_status_t mpm_service_set_name(ap_pool_t *p, char *name) /* Take the given literal name if there is no service entry */ display_name = ap_pstrdup(p, name); - return APR_NOTFOUND; + return APR_ENOFILE; }