Fix the "Connecting user/network" message

This debug line was printing the network twice instead of the username
This commit is contained in:
Kyle Fuller
2011-10-09 19:07:43 +00:00
parent edaa20e59e
commit af24f7b9a7
+1 -1
View File
@@ -840,7 +840,7 @@ bool CIRCNetwork::Connect() {
CIRCSock *pIRCSock = new CIRCSock(this);
pIRCSock->SetPass(pServer->GetPass());
DEBUG("Connecting user/network [" << m_sName << "/" << m_sName << "]");
DEBUG("Connecting user/network [" << m_pUser->GetUserName() << "/" << m_sName << "]");
NETWORKMODULECALL(OnIRCConnecting(pIRCSock), m_pUser, this, NULL,
DEBUG("Some module aborted the connection attempt");