In corlib/System.Runtime.InteropServices:
[mono.git] / mcs / class / System / System.Security.AccessControl / SemaphoreAuditRule.cs
index db0a3873ae1d81089f7fb6e2bf08437608374ab1..df54526dab1739d8bf15c6e1f8bf562b0aa01076 100644 (file)
@@ -34,15 +34,14 @@ using System.Security.Principal;
 namespace System.Security.AccessControl {
        [ComVisible (false)]
        public sealed class SemaphoreAuditRule
-#if !TARGET_JVM
                : AuditRule
-#endif
        {
                SemaphoreRights semaphoreRights;
                
                public SemaphoreAuditRule (IdentityReference identity,
                                           SemaphoreRights semaphoreRights,
                                           AuditFlags flags)
+                       : base (identity, 0, false, InheritanceFlags.None, PropagationFlags.None, flags)
                {
                        this.semaphoreRights = semaphoreRights;
                }