Changeset 278 for trunk/src/NTDLL/sec.cpp
- Timestamp:
- Jul 6, 1999, 5:48:48 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/NTDLL/sec.cpp
r97 r278 1 /* $Id: sec.cpp,v 1. 2 1999-06-10 17:06:46phaller Exp $ */1 /* $Id: sec.cpp,v 1.3 1999-07-06 15:48:45 phaller Exp $ */ 2 2 3 3 /* … … 305 305 return STATUS_UNKNOWN_REVISION ; 306 306 307 if ( (*lpbDaclPresent = (SE_DACL_PRESENT & pSecurityDescriptor->Control) ? 1 : 0) ) 307 *lpbDaclPresent = (SE_DACL_PRESENT & pSecurityDescriptor->Control); 308 if (*lpbDaclPresent ? 1 : 0) 308 309 { 309 310 if ( SE_SELF_RELATIVE & pSecurityDescriptor->Control) … … 378 379 return STATUS_UNKNOWN_REVISION ; 379 380 380 if ( (*lpbSaclPresent = (SE_SACL_PRESENT & pSecurityDescriptor->Control) ? 1 : 0) ) 381 *lpbSaclPresent = (SE_SACL_PRESENT & pSecurityDescriptor->Control); 382 if (*lpbSaclPresent ? 1 : 0) 381 383 { 382 384 if ( SE_SELF_RELATIVE & pSecurityDescriptor->Control)
Note:
See TracChangeset
for help on using the changeset viewer.