summaryrefslogtreecommitdiff
path: root/HBObject.cs
diff options
context:
space:
mode:
authorJake Mannens <jake@asger.xyz>2023-10-04 15:59:52 +1100
committerJake Mannens <jake@asger.xyz>2023-10-04 15:59:52 +1100
commitaa0b68f7648bd5a7c14b64737a4f8d3e402bfce5 (patch)
treef058842f77cfbd6e2a21abd3e4f8ad4f8ad1ed9a /HBObject.cs
parent33438ac951430fa370965b42a3d98a54e704ab01 (diff)
Fix SID equality and WellKnownSid mappings
Diffstat (limited to 'HBObject.cs')
-rw-r--r--HBObject.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/HBObject.cs b/HBObject.cs
index df60ed0..eecb3f5 100644
--- a/HBObject.cs
+++ b/HBObject.cs
@@ -15,5 +15,5 @@ public class HBObject {
[ForeignKey("AclId")]
public Acl? Acl { get; set; }
public SecurityIdentifier Owner { get; set; } =
- new SecurityIdentifier(WellKnownSidType.WorldSid);
+ WellKnownSid.WorldSid;
} \ No newline at end of file