aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2012-01-24 20:54:35 +0000
committerJustin Clark-Casey (justincc)2012-01-24 20:54:35 +0000
commit7e76397a264042e772855be5245b64b35336744a (patch)
tree94c91ddf6c53a235fa72ce2319c9e7eb6f4eb99f /OpenSim
parentMerge branch 'master' of ssh://opensimulator.org/var/git/opensim (diff)
downloadopensim-SC_OLD-7e76397a264042e772855be5245b64b35336744a.zip
opensim-SC_OLD-7e76397a264042e772855be5245b64b35336744a.tar.gz
opensim-SC_OLD-7e76397a264042e772855be5245b64b35336744a.tar.bz2
opensim-SC_OLD-7e76397a264042e772855be5245b64b35336744a.tar.xz
minor: correct text and usage for "image queues show" reigon console command.
Diffstat (limited to 'OpenSim')
-rw-r--r--OpenSim/Region/OptionalModules/Agent/UDP/Linden/LindenUDPInfoModule.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/OptionalModules/Agent/UDP/Linden/LindenUDPInfoModule.cs b/OpenSim/Region/OptionalModules/Agent/UDP/Linden/LindenUDPInfoModule.cs
index 95aa864..261029c 100644
--- a/OpenSim/Region/OptionalModules/Agent/UDP/Linden/LindenUDPInfoModule.cs
+++ b/OpenSim/Region/OptionalModules/Agent/UDP/Linden/LindenUDPInfoModule.cs
@@ -88,7 +88,7 @@ namespace OpenSim.Region.CoreModules.UDP.Linden
88 (mod, cmd) => MainConsole.Instance.Output(HandleImageQueuesClear(cmd))); 88 (mod, cmd) => MainConsole.Instance.Output(HandleImageQueuesClear(cmd)));
89 89
90 scene.AddCommand( 90 scene.AddCommand(
91 this, "show image queues", 91 this, "image queues show",
92 "image queues show <first-name> <last-name>", 92 "image queues show <first-name> <last-name>",
93 "Show the image queues (textures downloaded via UDP) for a particular client.", 93 "Show the image queues (textures downloaded via UDP) for a particular client.",
94 (mod, cmd) => MainConsole.Instance.Output(GetImageQueuesReport(cmd))); 94 (mod, cmd) => MainConsole.Instance.Output(GetImageQueuesReport(cmd)));
@@ -293,7 +293,7 @@ namespace OpenSim.Region.CoreModules.UDP.Linden
293 private string GetImageQueuesReport(string[] showParams) 293 private string GetImageQueuesReport(string[] showParams)
294 { 294 {
295 if (showParams.Length < 5 || showParams.Length > 6) 295 if (showParams.Length < 5 || showParams.Length > 6)
296 return "Usage: show image queues <first-name> <last-name> [full]"; 296 return "Usage: image queues show <first-name> <last-name> [full]";
297 297
298 string firstName = showParams[3]; 298 string firstName = showParams[3];
299 string lastName = showParams[4]; 299 string lastName = showParams[4];