From: William A. Rowe Jr Date: Mon, 24 Sep 2001 21:44:48 +0000 (+0000) Subject: Get around a missing define from the more recent Platform SDKs. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ea49fea6a823fcda772bb3abb9090c62e2b15b79;p=thirdparty%2Fapache%2Fhttpd.git Get around a missing define from the more recent Platform SDKs. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@91133 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/src/os/win32/service.c b/src/os/win32/service.c index f2a734eef4f..b915782ed30 100644 --- a/src/os/win32/service.c +++ b/src/os/win32/service.c @@ -744,7 +744,7 @@ void service_set_status(int status) SERVICE_ALL_ACCESS); if (schService) { ret = ChangeServiceDescription(schService, - SERVICE_CONFIG_DESCRIPTION, + 1 /* SERVICE_CONFIG_DESCRIPTION */, &full_description); CloseServiceHandle(schService); }