From: William A. Rowe Jr Date: Mon, 24 Sep 2001 22:02:14 +0000 (+0000) Subject: Solve a symbol from later PlatformSDK's that a VC5 user may or may not X-Git-Tag: 2.0.26~187 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=1c120280da4d14fb25ab6a73a18b99c508a0855a;p=thirdparty%2Fapache%2Fhttpd.git Solve a symbol from later PlatformSDK's that a VC5 user may or may not have installed. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@91134 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/mpm/winnt/service.c b/server/mpm/winnt/service.c index 93d4a2140db..71605972e22 100644 --- a/server/mpm/winnt/service.c +++ b/server/mpm/winnt/service.c @@ -448,7 +448,7 @@ static void set_service_description(void) SERVICE_ALL_ACCESS); if (schService) { if (ChangeServiceDescription(schService, - SERVICE_CONFIG_DESCRIPTION, + 1 /* SERVICE_CONFIG_DESCRIPTION */, &full_description)) full_description = NULL; CloseServiceHandle(schService);