From a09ad1249fc3e1268652db97619223bb31c3a9fb Mon Sep 17 00:00:00 2001 From: cflakes Date: Sat, 17 Jul 2010 15:02:16 +0000 Subject: [PATCH] Raised the number of PM lines in the PM buffer to 250 (from 100) git-svn-id: https://znc.svn.sourceforge.net/svnroot/znc/trunk@2089 726aef4b-f618-498e-8847-2d620e286838 --- User.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/User.cpp b/User.cpp index aa8e5879..97acada3 100644 --- a/User.cpp +++ b/User.cpp @@ -62,6 +62,7 @@ CUser::CUser(const CString& sUserName) { m_pModules = new CModules; m_RawBuffer.SetLineCount(100); // This should be more than enough raws, especially since we are buffering the MOTD separately m_MotdBuffer.SetLineCount(200); // This should be more than enough motd lines + m_QueryBuffer.SetLineCount(250); m_bMultiClients = true; m_bBounceDCCs = true; m_eHashType = HASH_NONE;