Don't use "ip:port" but "ip port" for display purposes

With ipv6 addresses, ip:port just looks wrong.

Found by KiNgMaR, thanks.


git-svn-id: https://znc.svn.sourceforge.net/svnroot/znc/trunk@1955 726aef4b-f618-498e-8847-2d620e286838
This commit is contained in:
psychon
2010-04-30 10:50:33 +00:00
parent cb5206b230
commit 20c79083de
3 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -97,7 +97,7 @@ CString CLogMod::GetServer()
if (pServer->IsSSL())
sSSL = "+";
return pServer->GetName() + ":" + sSSL + CString(pServer->GetPort());
return pServer->GetName() + " " + sSSL + CString(pServer->GetPort());
}
void CLogMod::OnIRCConnected()