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

0.7.4.1
Justin Clark-Casey (justincc) 2012-07-19 23:35:56 +01:00
parent d1d331a4c0
commit be39f03caa
1 changed files with 1 additions and 1 deletions

View File

@ -1145,8 +1145,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());