aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ClientStack/ClientStackManager.cs
diff options
context:
space:
mode:
authorDiva Canto2015-08-15 16:08:14 -0700
committerDiva Canto2015-08-15 16:08:14 -0700
commit4cbbbefbf63f6cab4241563ebf56c6b0bea30ed3 (patch)
tree02f734f0969199bb964dde5eee73841c820643bd /OpenSim/Region/ClientStack/ClientStackManager.cs
parentMerge branch 'master' of ssh://opensimulator.org/var/git/opensim (diff)
downloadopensim-SC_OLD-4cbbbefbf63f6cab4241563ebf56c6b0bea30ed3.zip
opensim-SC_OLD-4cbbbefbf63f6cab4241563ebf56c6b0bea30ed3.tar.gz
opensim-SC_OLD-4cbbbefbf63f6cab4241563ebf56c6b0bea30ed3.tar.bz2
opensim-SC_OLD-4cbbbefbf63f6cab4241563ebf56c6b0bea30ed3.tar.xz
Removed ignoreCase=true from the call to Type.GetInterface, because, well, we don't want to ignore case. And this seems to be causing problems in mono 4.3.
Diffstat (limited to 'OpenSim/Region/ClientStack/ClientStackManager.cs')
-rw-r--r--OpenSim/Region/ClientStack/ClientStackManager.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/ClientStack/ClientStackManager.cs b/OpenSim/Region/ClientStack/ClientStackManager.cs
index 299aabd..3ec968f 100644
--- a/OpenSim/Region/ClientStack/ClientStackManager.cs
+++ b/OpenSim/Region/ClientStack/ClientStackManager.cs
@@ -67,7 +67,7 @@ namespace OpenSim.Region.ClientStack
67 { 67 {
68 if (pluginType.IsPublic) 68 if (pluginType.IsPublic)
69 { 69 {
70 Type typeInterface = pluginType.GetInterface("IClientNetworkServer", true); 70 Type typeInterface = pluginType.GetInterface("IClientNetworkServer");
71 71
72 if (typeInterface != null) 72 if (typeInterface != null)
73 { 73 {