Return-Path: Delivered-To: apmail-httpd-cvs-archive@httpd.apache.org Received: (qmail 99241 invoked by uid 500); 24 Sep 2001 21:44:56 -0000 Mailing-List: contact cvs-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@httpd.apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list cvs@httpd.apache.org Received: (qmail 99225 invoked by uid 500); 24 Sep 2001 21:44:56 -0000 Delivered-To: apmail-apache-1.3-cvs@apache.org Date: 24 Sep 2001 21:44:48 -0000 Message-ID: <20010924214448.33190.qmail@icarus.apache.org> From: wrowe@apache.org To: apache-1.3-cvs@apache.org Subject: cvs commit: apache-1.3/src/os/win32 service.c X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N wrowe 01/09/24 14:44:48 Modified: src/os/win32 service.c Log: Get around a missing define from the more recent Platform SDKs. Revision Changes Path 1.54 +1 -1 apache-1.3/src/os/win32/service.c Index: service.c =================================================================== RCS file: /home/cvs/apache-1.3/src/os/win32/service.c,v retrieving revision 1.53 retrieving revision 1.54 diff -u -r1.53 -r1.54 --- service.c 2001/03/27 19:18:14 1.53 +++ service.c 2001/09/24 21:44:48 1.54 @@ -744,7 +744,7 @@ SERVICE_ALL_ACCESS); if (schService) { ret = ChangeServiceDescription(schService, - SERVICE_CONFIG_DESCRIPTION, + 1 /* SERVICE_CONFIG_DESCRIPTION */, &full_description); CloseServiceHandle(schService); }