mirror of
https://github.com/znc/znc.git
synced 2026-03-28 17:42:41 +01:00
Fixed bug where motd was calling clear() on the wrong raw
git-svn-id: https://znc.svn.sourceforge.net/svnroot/znc/trunk@135 726aef4b-f618-498e-8847-2d620e286838
This commit is contained in:
@@ -115,9 +115,9 @@ void CIRCSock::ReadLine(const string& sData) {
|
||||
case 266: // global users
|
||||
m_RawBuffer.AddLine(":" + sServer + " " + sCmd + " ", " " + sRest);
|
||||
break;
|
||||
case 372: // motd
|
||||
m_vsMotdBuffer.clear();
|
||||
case 375: // begin motd
|
||||
m_vsMotdBuffer.clear();
|
||||
case 372: // motd
|
||||
case 376: // end motd
|
||||
m_vsMotdBuffer.push_back(sLine);
|
||||
break;
|
||||
|
||||
Reference in New Issue
Block a user