diff options
-rw-r--r-- | OpenSim/Framework/Servers/BaseOpenSimServer.cs | 2 | ||||
-rw-r--r-- | OpenSim/Region/Application/OpenSim.cs | 5 |
2 files changed, 5 insertions, 2 deletions
diff --git a/OpenSim/Framework/Servers/BaseOpenSimServer.cs b/OpenSim/Framework/Servers/BaseOpenSimServer.cs index cc75df4..ac5e183 100644 --- a/OpenSim/Framework/Servers/BaseOpenSimServer.cs +++ b/OpenSim/Framework/Servers/BaseOpenSimServer.cs | |||
@@ -342,7 +342,7 @@ namespace OpenSim.Framework.Servers | |||
342 | } | 342 | } |
343 | 343 | ||
344 | public virtual void HandleShow(string module, string[] cmd) | 344 | public virtual void HandleShow(string module, string[] cmd) |
345 | { | 345 | { |
346 | List<string> args = new List<string>(cmd); | 346 | List<string> args = new List<string>(cmd); |
347 | 347 | ||
348 | args.RemoveAt(0); | 348 | args.RemoveAt(0); |
diff --git a/OpenSim/Region/Application/OpenSim.cs b/OpenSim/Region/Application/OpenSim.cs index 4d3dcbb..5bce225 100644 --- a/OpenSim/Region/Application/OpenSim.cs +++ b/OpenSim/Region/Application/OpenSim.cs | |||
@@ -479,6 +479,7 @@ namespace OpenSim | |||
479 | } | 479 | } |
480 | } | 480 | } |
481 | break; | 481 | break; |
482 | |||
482 | case "get": | 483 | case "get": |
483 | if (cmdparams.Length < 3) | 484 | if (cmdparams.Length < 3) |
484 | { | 485 | { |
@@ -501,6 +502,7 @@ namespace OpenSim | |||
501 | } | 502 | } |
502 | 503 | ||
503 | break; | 504 | break; |
505 | |||
504 | case "save": | 506 | case "save": |
505 | m_console.Notice("Saving configuration file: " + Application.iniFilePath); | 507 | m_console.Notice("Saving configuration file: " + Application.iniFilePath); |
506 | m_config.Save(Application.iniFilePath); | 508 | m_config.Save(Application.iniFilePath); |
@@ -763,6 +765,8 @@ namespace OpenSim | |||
763 | // see BaseOpenSimServer | 765 | // see BaseOpenSimServer |
764 | override public void HandleShow(string mod, string[] cmd) | 766 | override public void HandleShow(string mod, string[] cmd) |
765 | { | 767 | { |
768 | base.HandleShow(mod, cmd); | ||
769 | |||
766 | List<string> args = new List<string>(cmd); | 770 | List<string> args = new List<string>(cmd); |
767 | args.RemoveAt(0); | 771 | args.RemoveAt(0); |
768 | string[] showParams = args.ToArray(); | 772 | string[] showParams = args.ToArray(); |
@@ -835,7 +839,6 @@ namespace OpenSim | |||
835 | }); | 839 | }); |
836 | break; | 840 | break; |
837 | 841 | ||
838 | |||
839 | case "queues": | 842 | case "queues": |
840 | Notice(GetQueuesReport()); | 843 | Notice(GetQueuesReport()); |
841 | break; | 844 | break; |