Properly show if we are connecting to a ssl server

Idea by DarthGandalf, crappy commit message by me.


git-svn-id: https://znc.svn.sourceforge.net/svnroot/znc/trunk@2078 726aef4b-f618-498e-8847-2d620e286838
This commit is contained in:
psychon
2010-07-10 06:53:10 +00:00
parent 47a5ab3751
commit e0dda30871
3 changed files with 6 additions and 5 deletions
+2 -2
View File
@@ -144,8 +144,8 @@ bool CZNC::ConnectUser(CUser *pUser) {
m_sConnectThrottle.AddItem(pServer->GetName());
DEBUG("User [" << pUser->GetUserName() << "] is connecting to [" << pServer->GetName() << " " << pServer->GetPort() << "] ...");
pUser->PutStatus("Attempting to connect to [" + pServer->GetName() + " " + CString(pServer->GetPort()) + "] ...");
DEBUG("User [" << pUser->GetUserName() << "] is connecting to [" << pServer->GetString(false) << "] ...");
pUser->PutStatus("Attempting to connect to [" + pServer->GetString(false) + "] ...");
pIRCSock = new CIRCSock(pUser);
pIRCSock->SetPass(pServer->GetPass());