aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim
diff options
context:
space:
mode:
authorCharles Krinke2008-07-20 22:19:39 +0000
committerCharles Krinke2008-07-20 22:19:39 +0000
commitbedd28e02e1126130593c6231fc62cd60e0d3062 (patch)
tree00d78f34216cfdd699d407670e835e80fca66aae /OpenSim
parentMantis#1796. Thank you kindly, StrawberryFride for a patch that: (diff)
downloadopensim-SC_OLD-bedd28e02e1126130593c6231fc62cd60e0d3062.zip
opensim-SC_OLD-bedd28e02e1126130593c6231fc62cd60e0d3062.tar.gz
opensim-SC_OLD-bedd28e02e1126130593c6231fc62cd60e0d3062.tar.bz2
opensim-SC_OLD-bedd28e02e1126130593c6231fc62cd60e0d3062.tar.xz
Mantis#1797. Thank you kindly, StrawberryFride for a patch that solves:
Shutdown command on region server was presenting an error, failing to send detach region for all regions, and failing to shut down
Diffstat (limited to 'OpenSim')
-rw-r--r--OpenSim/Region/Communications/OGS1/OGS1GridServices.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/Communications/OGS1/OGS1GridServices.cs b/OpenSim/Region/Communications/OGS1/OGS1GridServices.cs
index d8a6daf..a2cddec 100644
--- a/OpenSim/Region/Communications/OGS1/OGS1GridServices.cs
+++ b/OpenSim/Region/Communications/OGS1/OGS1GridServices.cs
@@ -206,7 +206,7 @@ namespace OpenSim.Region.Communications.OGS1
206 // Hashtable griddatahash = GridRespData; 206 // Hashtable griddatahash = GridRespData;
207 207
208 // Process Response 208 // Process Response
209 if (GridRespData.ContainsKey("error")) 209 if (GridRespData != null && GridRespData.ContainsKey("error"))
210 { 210 {
211 string errorstring = (string)GridRespData["error"]; 211 string errorstring = (string)GridRespData["error"];
212 m_log.Error("Unable to connect to grid: " + errorstring); 212 m_log.Error("Unable to connect to grid: " + errorstring);