Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Skiba <andrews@mono-cvs.ximian.com>2006-11-08 15:34:58 +0300
committerAndrew Skiba <andrews@mono-cvs.ximian.com>2006-11-08 15:34:58 +0300
commit901e94e1e8557660f3100af5dd2b6aa27eb34ce8 (patch)
tree073d6c0dd6d328331734e7a6ab2fa390cc0aafbc /mcs/class/System/System.Security.AccessControl
parentb309d37d4014554dccb3de013c67a62604b2cac7 (diff)
compile System.dll in GH
svn path=/trunk/mcs/; revision=67512
Diffstat (limited to 'mcs/class/System/System.Security.AccessControl')
-rw-r--r--mcs/class/System/System.Security.AccessControl/SemaphoreAuditRule.cs2
1 files changed, 2 insertions, 0 deletions
diff --git a/mcs/class/System/System.Security.AccessControl/SemaphoreAuditRule.cs b/mcs/class/System/System.Security.AccessControl/SemaphoreAuditRule.cs
index 2bcf8676655..f8344420cb7 100644
--- a/mcs/class/System/System.Security.AccessControl/SemaphoreAuditRule.cs
+++ b/mcs/class/System/System.Security.AccessControl/SemaphoreAuditRule.cs
@@ -43,7 +43,9 @@ namespace System.Security.AccessControl {
public SemaphoreAuditRule (IdentityReference identity,
SemaphoreRights semaphoreRights,
AuditFlags flags)
+#if !TARGET_JVM
: base (identity, 0, false, InheritanceFlags.None, PropagationFlags.None, flags)
+#endif
{
this.semaphoreRights = semaphoreRights;
}