aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--OpenSim/Framework/AnimationSet.cs2
-rw-r--r--OpenSim/Region/ClientStack/Linden/Caps/BunchOfCaps/BunchOfCaps.cs2
2 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Framework/AnimationSet.cs b/OpenSim/Framework/AnimationSet.cs
index f91838e..7e6aa17 100644
--- a/OpenSim/Framework/AnimationSet.cs
+++ b/OpenSim/Framework/AnimationSet.cs
@@ -45,7 +45,7 @@ namespace OpenSim.Framework
45 return currentPerm & allowedPermitions; 45 return currentPerm & allowedPermitions;
46 } 46 }
47 47
48 public static void enforceItemPermitions(ref InventoryItemBase it) 48 public static void enforceItemPermitions(InventoryItemBase it)
49 { 49 {
50 if (it == null) 50 if (it == null)
51 return; 51 return;
diff --git a/OpenSim/Region/ClientStack/Linden/Caps/BunchOfCaps/BunchOfCaps.cs b/OpenSim/Region/ClientStack/Linden/Caps/BunchOfCaps/BunchOfCaps.cs
index a31532b..1e28db0 100644
--- a/OpenSim/Region/ClientStack/Linden/Caps/BunchOfCaps/BunchOfCaps.cs
+++ b/OpenSim/Region/ClientStack/Linden/Caps/BunchOfCaps/BunchOfCaps.cs
@@ -1125,7 +1125,7 @@ namespace OpenSim.Region.ClientStack.Linden
1125 1125
1126 if (inType == (sbyte)CustomInventoryType.AnimationSet) 1126 if (inType == (sbyte)CustomInventoryType.AnimationSet)
1127 { 1127 {
1128 AnimationSet.enforceItemPermitions(ref item); 1128 AnimationSet.enforceItemPermitions(item);
1129 } 1129 }
1130 1130
1131 else if (restrictPerms) 1131 else if (restrictPerms)