Fix all overloaded Csock::ReadData() functions

CSocket changes the prototype, we follow.


git-svn-id: https://znc.svn.sourceforge.net/svnroot/znc/trunk@1767 726aef4b-f618-498e-8847-2d620e286838
This commit is contained in:
psychon
2010-02-18 13:16:44 +00:00
parent f5ede26cea
commit ec828fd081
7 changed files with 8 additions and 8 deletions
+1 -1
View File
@@ -36,7 +36,7 @@ void CHTTPSock::Init() {
CHTTPSock::~CHTTPSock() {}
void CHTTPSock::ReadData(const char* data, int len) {
void CHTTPSock::ReadData(const char* data, size_t len) {
if (!m_bDone && m_bGotHeader && m_bPost) {
m_sPostData.append(data, len);
CheckPost();