From c125e81763d5383f3bb03c2b944f4ab74f49b175 Mon Sep 17 00:00:00 2001 From: imaginos Date: Thu, 31 Mar 2005 20:59:43 +0000 Subject: [PATCH] typo on column git-svn-id: https://znc.svn.sourceforge.net/svnroot/znc/trunk@55 726aef4b-f618-498e-8847-2d620e286838 --- modules/schat.cpp | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/modules/schat.cpp b/modules/schat.cpp index 32cb2e27..f41f8572 100644 --- a/modules/schat.cpp +++ b/modules/schat.cpp @@ -14,6 +14,9 @@ * Author: imaginos * * $Log$ + * Revision 1.3 2005/03/31 20:59:43 imaginos + * typo on column + * * Revision 1.2 2005/03/31 20:39:10 imaginos * add ability to show all socks (debugging) * @@ -345,9 +348,9 @@ public: if ( pSock->GetType() != Csock::LISTENER ) { if ( pSock->GetType() == Csock::OUTBOUND ) - Table.SetCell( "Status", "Outbound" ); + Table.SetCell( "Type", "Outbound" ); else - Table.SetCell( "Status", "Inbound" ); + Table.SetCell( "Type", "Inbound" ); Table.SetCell( "LocalIP:Port", pSock->GetLocalIP() + ":" + CUtils::ToString( pSock->GetLocalPort() ) ); Table.SetCell( "RemoteIP:Port", pSock->GetRemoteIP() + ":" + CUtils::ToString( pSock->GetRemotePort() ) ); SSL_SESSION *pSession = pSock->GetSSLSession(); @@ -358,7 +361,7 @@ public: } else { - Table.SetCell( "Status", "Listener" ); + Table.SetCell( "Type", "Listener" ); Table.SetCell( "LocalIP:Port", pSock->GetLocalIP() + ":" + CUtils::ToString( pSock->GetLocalPort() ) ); Table.SetCell( "RemoteIP:Port", "0.0.0.0:0" ); }