Skip to content

Commit

Permalink
fix issue
Browse files Browse the repository at this point in the history
  • Loading branch information
JonasBK authored Oct 2, 2024
1 parent 4dd1903 commit e6c7e71
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/CommonLib/Processors/DomainTrustProcessor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ public async IAsyncEnumerable<DomainTrust> EnumerateDomainTrusts(string domain)

trust.TGTDelegationEnabled =
!attributes.HasFlag(TrustAttributes.QuarantinedDomain) &&
attributes.HasFlag(TrustAttributes.CrossOrganizationEnableTGTDelegation));
attributes.HasFlag(TrustAttributes.CrossOrganizationEnableTGTDelegation);

trust.TrustType = TrustAttributesToType(attributes);

Expand Down

0 comments on commit e6c7e71

Please sign in to comment.