Mail Archives: cygwin-developers/2001/11/08/13:29:49
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");
- Raw text -