minor: switch around mixed up circuit code and endpoint data in "show connections" region console command

0.7.3-extended
Justin Clark-Casey (justincc) 2012-07-19 23:35:56 +01:00
parent 454c3fc913
commit 5aa9c21e7d
1 changed files with 1 additions and 1 deletions

View File

@ -1127,8 +1127,8 @@ namespace OpenSim
c => cdt.AddRow(
s.Name,
c.Name,
c.RemoteEndPoint.ToString(),
c.CircuitCode.ToString(),
c.RemoteEndPoint.ToString(),
c.IsActive.ToString())));
MainConsole.Instance.Output(cdt.ToString());