aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Server
diff options
context:
space:
mode:
authorDiva Canto2009-10-05 13:14:14 -0700
committerDiva Canto2009-10-05 13:14:14 -0700
commit282b7520355749466b7142a8273e7eaa3e92ebc1 (patch)
tree537cc2096d30c5325bc628c8a18501ece395852c /OpenSim/Server
parentFixed bug introduced in one of the last commits. (diff)
downloadopensim-SC_OLD-282b7520355749466b7142a8273e7eaa3e92ebc1.zip
opensim-SC_OLD-282b7520355749466b7142a8273e7eaa3e92ebc1.tar.gz
opensim-SC_OLD-282b7520355749466b7142a8273e7eaa3e92ebc1.tar.bz2
opensim-SC_OLD-282b7520355749466b7142a8273e7eaa3e92ebc1.tar.xz
Minor change.
Diffstat (limited to 'OpenSim/Server')
-rw-r--r--OpenSim/Server/Handlers/Grid/GridServerPostHandler.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Server/Handlers/Grid/GridServerPostHandler.cs b/OpenSim/Server/Handlers/Grid/GridServerPostHandler.cs
index 08edcbf..17a31bc 100644
--- a/OpenSim/Server/Handlers/Grid/GridServerPostHandler.cs
+++ b/OpenSim/Server/Handlers/Grid/GridServerPostHandler.cs
@@ -113,7 +113,7 @@ namespace OpenSim.Server.Handlers.Grid
113 byte[] Register(Dictionary<string, string> request) 113 byte[] Register(Dictionary<string, string> request)
114 { 114 {
115 UUID scopeID = UUID.Zero; 115 UUID scopeID = UUID.Zero;
116 if (request["SCOPEID"] != null) 116 if (request.ContainsKey("SCOPEID"))
117 UUID.TryParse(request["SCOPEID"], out scopeID); 117 UUID.TryParse(request["SCOPEID"], out scopeID);
118 else 118 else
119 m_log.WarnFormat("[GRID HANDLER]: no scopeID in request to register region"); 119 m_log.WarnFormat("[GRID HANDLER]: no scopeID in request to register region");