diff options
author | Diva Canto | 2015-08-15 16:08:14 -0700 |
---|---|---|
committer | Diva Canto | 2015-08-15 16:08:14 -0700 |
commit | 4cbbbefbf63f6cab4241563ebf56c6b0bea30ed3 (patch) | |
tree | 02f734f0969199bb964dde5eee73841c820643bd /OpenSim/Server/Base/ServerUtils.cs | |
parent | Merge branch 'master' of ssh://opensimulator.org/var/git/opensim (diff) | |
download | opensim-SC-4cbbbefbf63f6cab4241563ebf56c6b0bea30ed3.zip opensim-SC-4cbbbefbf63f6cab4241563ebf56c6b0bea30ed3.tar.gz opensim-SC-4cbbbefbf63f6cab4241563ebf56c6b0bea30ed3.tar.bz2 opensim-SC-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 '')
-rw-r--r-- | OpenSim/Server/Base/ServerUtils.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Server/Base/ServerUtils.cs b/OpenSim/Server/Base/ServerUtils.cs index c384406..18a4266 100644 --- a/OpenSim/Server/Base/ServerUtils.cs +++ b/OpenSim/Server/Base/ServerUtils.cs | |||
@@ -268,7 +268,7 @@ namespace OpenSim.Server.Base | |||
268 | && pluginType.ToString() != pluginType.Namespace + "." + className) | 268 | && pluginType.ToString() != pluginType.Namespace + "." + className) |
269 | continue; | 269 | continue; |
270 | 270 | ||
271 | Type typeInterface = pluginType.GetInterface(interfaceName, true); | 271 | Type typeInterface = pluginType.GetInterface(interfaceName); |
272 | 272 | ||
273 | if (typeInterface != null) | 273 | if (typeInterface != null) |
274 | { | 274 | { |