Skip to content

Commit

Permalink
Fixed Detection In /CanonicalizeAcls Operation
Browse files Browse the repository at this point in the history
- Removed a misplaced early break which caused the canonicalization routine to run for every DACL regardless as to whether it needed it.
- Updated and signed binaries for 1.11.0.1.
  • Loading branch information
NoMoreFood committed Mar 22, 2019
1 parent 76b348e commit b78f1d3
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 3 deletions.
Binary file modified Build/Release/x64/repacls.exe
Binary file not shown.
Binary file modified Build/Release/x86/repacls.exe
Binary file not shown.
Binary file modified Build/Repacls.zip
Binary file not shown.
2 changes: 1 addition & 1 deletion OperationCanonicalizeAcls.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ bool OperationCanonicalizeAcls::ProcessAclAction(WCHAR * const sSdPart, ObjectEn
OperationCheckCanonical::AceOrder oThisAceOrder = OperationCheckCanonical::DetermineAceOrder(tCheckAce);

// make sure this order is not less then the current order
if (oThisAceOrder < oOrderOverall) break;
if (oThisAceOrder < oOrderOverall)
{
bHasProblems = true;
break;
Expand Down
4 changes: 2 additions & 2 deletions Version.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#pragma once

#define VERSION_STRING "1.11.0.0"
#define VERSION_COMMA 1,11,0,0
#define VERSION_STRING "1.11.0.1"
#define VERSION_COMMA 1,11,0,1

0 comments on commit b78f1d3

Please sign in to comment.