This is the mail archive of the cygwin-developers@cygwin.com mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

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");


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]