aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region
diff options
context:
space:
mode:
authorJustin Clarke Casey2008-11-01 22:07:55 +0000
committerJustin Clarke Casey2008-11-01 22:07:55 +0000
commite3a1ccf0b2291e1a8de39c3c00b0b531eeb6736f (patch)
tree6331cc457609d162ba7d58d41f000f249cea6cd2 /OpenSim/Region
parent* refactor: Convert most non SOP methods to use SOG.IsAttachment rather than ... (diff)
downloadopensim-SC_OLD-e3a1ccf0b2291e1a8de39c3c00b0b531eeb6736f.zip
opensim-SC_OLD-e3a1ccf0b2291e1a8de39c3c00b0b531eeb6736f.tar.gz
opensim-SC_OLD-e3a1ccf0b2291e1a8de39c3c00b0b531eeb6736f.tar.bz2
opensim-SC_OLD-e3a1ccf0b2291e1a8de39c3c00b0b531eeb6736f.tar.xz
* minor: Remove mono compiler warning
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/Environment/Modules/Avatar/Chat/XIRCBridgeModule.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/Environment/Modules/Avatar/Chat/XIRCBridgeModule.cs b/OpenSim/Region/Environment/Modules/Avatar/Chat/XIRCBridgeModule.cs
index 4594e6c..c8d8307 100644
--- a/OpenSim/Region/Environment/Modules/Avatar/Chat/XIRCBridgeModule.cs
+++ b/OpenSim/Region/Environment/Modules/Avatar/Chat/XIRCBridgeModule.cs
@@ -228,7 +228,7 @@ namespace OpenSim.Region.Environment.Modules.Avatar.Chat
228 { 228 {
229 if (!requestData.ContainsKey("password")) 229 if (!requestData.ContainsKey("password"))
230 throw new Exception("Invalid request"); 230 throw new Exception("Invalid request");
231 if (requestData["password"] != password) 231 if ((string)requestData["password"] != password)
232 throw new Exception("Invalid request"); 232 throw new Exception("Invalid request");
233 } 233 }
234 234