aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim
diff options
context:
space:
mode:
authorJohan Berntsson2008-03-24 03:03:21 +0000
committerJohan Berntsson2008-03-24 03:03:21 +0000
commit56dfa4e6da32f84526051140d3cc741d68304ebe (patch)
tree2d2e00636a2d3690b4a099f46838ba40a59f6110 /OpenSim
parentXmlRpcCommand refactoring (diff)
downloadopensim-SC_OLD-56dfa4e6da32f84526051140d3cc741d68304ebe.zip
opensim-SC_OLD-56dfa4e6da32f84526051140d3cc741d68304ebe.tar.gz
opensim-SC_OLD-56dfa4e6da32f84526051140d3cc741d68304ebe.tar.bz2
opensim-SC_OLD-56dfa4e6da32f84526051140d3cc741d68304ebe.tar.xz
Fixed a small XmlRpcCommand bug
Diffstat (limited to 'OpenSim')
-rw-r--r--OpenSim/Region/Application/OpenSimMain.cs5
1 files changed, 4 insertions, 1 deletions
diff --git a/OpenSim/Region/Application/OpenSimMain.cs b/OpenSim/Region/Application/OpenSimMain.cs
index 35f146d..6510eea 100644
--- a/OpenSim/Region/Application/OpenSimMain.cs
+++ b/OpenSim/Region/Application/OpenSimMain.cs
@@ -618,7 +618,10 @@ namespace OpenSim
618 /// </summary> 618 /// </summary>
619 public virtual void Shutdown() 619 public virtual void Shutdown()
620 { 620 {
621 Util.XmlRpcCommand(proxyUrl, "Stop"); 621 if (proxyUrl.Length > 0)
622 {
623 Util.XmlRpcCommand(proxyUrl, "Stop");
624 }
622 625
623 if (m_startupCommandsFile != String.Empty) 626 if (m_startupCommandsFile != String.Empty)
624 { 627 {