Mailing-List: contact cygwin-developers-help AT sourceware DOT cygnus DOT com; run by ezmlm List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cygwin-developers-owner AT sources DOT redhat DOT com Delivered-To: mailing list cygwin-developers AT sources DOT redhat DOT com Date: 8 Nov 2001 13:29:38 -0500 Message-ID: <20011108182938.23943.qmail@lizard.curl.com> From: Jonathan Kamens To: cygwin-developers AT cygwin DOT com Subject: Fix to sec_helper.cc It looks like a change that Robert made to winsup/w32api/include/winnt.h yesterday broke winsup/cygwin/sec_helper.cc. Here's a fix: Index: sec_helper.cc =================================================================== RCS file: /cvs/src/src/winsup/cygwin/sec_helper.cc,v retrieving revision 1.13 diff -u -r1.13 sec_helper.cc --- sec_helper.cc 2001/09/11 20:01:00 1.13 +++ sec_helper.cc 2001/11/08 18:29:24 @@ -36,12 +36,12 @@ #include "cygheap.h" SID_IDENTIFIER_AUTHORITY sid_auth[] = { - {SECURITY_NULL_SID_AUTHORITY}, - {SECURITY_WORLD_SID_AUTHORITY}, - {SECURITY_LOCAL_SID_AUTHORITY}, - {SECURITY_CREATOR_SID_AUTHORITY}, - {SECURITY_NON_UNIQUE_AUTHORITY}, - {SECURITY_NT_AUTHORITY} + SECURITY_NULL_SID_AUTHORITY, + SECURITY_WORLD_SID_AUTHORITY, + SECURITY_LOCAL_SID_AUTHORITY, + SECURITY_CREATOR_SID_AUTHORITY, + SECURITY_NON_UNIQUE_AUTHORITY, + SECURITY_NT_AUTHORITY }; cygsid well_known_null_sid ("S-1-0-0");