diff options
author | John Hurliman | 2009-10-26 15:12:43 -0700 |
---|---|---|
committer | John Hurliman | 2009-10-26 15:12:43 -0700 |
commit | ff4b45a1e342017d50858a8342e76f51d6d4df27 (patch) | |
tree | 4405edcfc2ffcc96ad69a866015925fe5751a6f9 | |
parent | * Changed the watchdog timer to improve the speed of UpdateThread(), only tra... (diff) | |
download | opensim-SC_OLD-ff4b45a1e342017d50858a8342e76f51d6d4df27.zip opensim-SC_OLD-ff4b45a1e342017d50858a8342e76f51d6d4df27.tar.gz opensim-SC_OLD-ff4b45a1e342017d50858a8342e76f51d6d4df27.tar.bz2 opensim-SC_OLD-ff4b45a1e342017d50858a8342e76f51d6d4df27.tar.xz |
Do case-insensitive comparisons on region names in LLStandaloneLoginModule
-rw-r--r-- | OpenSim/Client/Linden/LLStandaloneLoginModule.cs | 2 | ||||
-rw-r--r-- | OpenSim/Region/Physics/OdePlugin/OdePlugin.cs | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Client/Linden/LLStandaloneLoginModule.cs b/OpenSim/Client/Linden/LLStandaloneLoginModule.cs index fb0aaa5..bb9b623 100644 --- a/OpenSim/Client/Linden/LLStandaloneLoginModule.cs +++ b/OpenSim/Client/Linden/LLStandaloneLoginModule.cs | |||
@@ -286,7 +286,7 @@ namespace OpenSim.Client.Linden | |||
286 | { | 286 | { |
287 | foreach (Scene nextScene in m_scenes) | 287 | foreach (Scene nextScene in m_scenes) |
288 | { | 288 | { |
289 | if (nextScene.RegionInfo.RegionName == regionName) | 289 | if (nextScene.RegionInfo.RegionName.Equals(regionName, StringComparison.InvariantCultureIgnoreCase)) |
290 | { | 290 | { |
291 | scene = nextScene; | 291 | scene = nextScene; |
292 | return true; | 292 | return true; |
diff --git a/OpenSim/Region/Physics/OdePlugin/OdePlugin.cs b/OpenSim/Region/Physics/OdePlugin/OdePlugin.cs index 82392b1..0eb0c45 100644 --- a/OpenSim/Region/Physics/OdePlugin/OdePlugin.cs +++ b/OpenSim/Region/Physics/OdePlugin/OdePlugin.cs | |||
@@ -2707,12 +2707,12 @@ namespace OpenSim.Region.Physics.OdePlugin | |||
2707 | { | 2707 | { |
2708 | if (prim.m_taintremove) | 2708 | if (prim.m_taintremove) |
2709 | { | 2709 | { |
2710 | //Console.WriteLine("Simulate calls RemovePrimThreadLocked"); | 2710 | //Console.WriteLine("Simulate calls RemovePrimThreadLocked"); |
2711 | RemovePrimThreadLocked(prim); | 2711 | RemovePrimThreadLocked(prim); |
2712 | } | 2712 | } |
2713 | else | 2713 | else |
2714 | { | 2714 | { |
2715 | //Console.WriteLine("Simulate calls ProcessTaints"); | 2715 | //Console.WriteLine("Simulate calls ProcessTaints"); |
2716 | prim.ProcessTaints(timeStep); | 2716 | prim.ProcessTaints(timeStep); |
2717 | } | 2717 | } |
2718 | processedtaints = true; | 2718 | processedtaints = true; |