diff options
author | Melanie | 2009-08-17 09:21:39 +0100 |
---|---|---|
committer | Melanie | 2009-08-17 09:21:39 +0100 |
commit | 3d7bb7567c7452d4a1216db5656d0b02957cf950 (patch) | |
tree | 5fe5b003a1ba140e1a5cb4cfda32d8569c3fee5e /OpenSim/ConsoleClient/ConsoleClient.cs | |
parent | Limit the scrollback buffer output of the command line client to (diff) | |
download | opensim-SC_OLD-3d7bb7567c7452d4a1216db5656d0b02957cf950.zip opensim-SC_OLD-3d7bb7567c7452d4a1216db5656d0b02957cf950.tar.gz opensim-SC_OLD-3d7bb7567c7452d4a1216db5656d0b02957cf950.tar.bz2 opensim-SC_OLD-3d7bb7567c7452d4a1216db5656d0b02957cf950.tar.xz |
Add the ability to use -console=rest to the region server. User
and pass are specified the same way as for the ROBUST server
Diffstat (limited to '')
-rw-r--r-- | OpenSim/ConsoleClient/ConsoleClient.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/ConsoleClient/ConsoleClient.cs b/OpenSim/ConsoleClient/ConsoleClient.cs index 1e5f0b7..319584f 100644 --- a/OpenSim/ConsoleClient/ConsoleClient.cs +++ b/OpenSim/ConsoleClient/ConsoleClient.cs | |||
@@ -185,7 +185,7 @@ namespace OpenSim.ConsoleClient | |||
185 | if (parts.Length != 3) | 185 | if (parts.Length != 3) |
186 | continue; | 186 | continue; |
187 | 187 | ||
188 | MainConsole.Instance.Output(parts[2], parts[1]); | 188 | MainConsole.Instance.Output(parts[2].Trim(), parts[1]); |
189 | } | 189 | } |
190 | 190 | ||
191 | Requester.MakeRequest(requestUrl, requestData, ReadResponses); | 191 | Requester.MakeRequest(requestUrl, requestData, ReadResponses); |