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:
prozacx
2005-04-14 06:10:46 +00:00
parent 2baac31fd9
commit 133efcb421

View File

@@ -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;