From 3fe70390f5deffc39f3638e5a37655b0370a1cbe Mon Sep 17 00:00:00 2001 From: Alexey Sokolov Date: Sun, 4 Sep 2011 11:12:41 +0700 Subject: [PATCH] Fix compilation after merge of 'redirects' branch. I tested only before the merge >< --- IRCSock.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/IRCSock.cpp b/IRCSock.cpp index 5fc59503..4e4bbcfb 100644 --- a/IRCSock.cpp +++ b/IRCSock.cpp @@ -167,9 +167,9 @@ void CIRCSock::ReadLine(const CString& sData) { CString sHost = sRest.Token(0); CString sPort = sRest.Token(1); CString sInfo = sRest.Token(2, true).TrimPrefix_n(":"); - m_pUser->PutStatus("Server [" + m_pUser->GetCurrentServer()->GetString(false) + + m_pNetwork->PutStatus("Server [" + m_pNetwork->GetCurrentServer()->GetString(false) + "] redirects us to [" + sHost + ":" + sPort + "] with reason [" + sInfo + "]"); - m_pUser->PutStatus("Perhaps you want to add it as a new server."); + m_pNetwork->PutStatus("Perhaps you want to add it as a new server."); // Don't send server redirects to the client return; }