aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/dcc/chat.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/modules/dcc/chat.cpp')
-rw-r--r--src/modules/dcc/chat.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/dcc/chat.cpp b/src/modules/dcc/chat.cpp
index 6ac90a686..f34a45579 100644
--- a/src/modules/dcc/chat.cpp
+++ b/src/modules/dcc/chat.cpp
@@ -43,7 +43,7 @@
#include "kvi_console.h"
#include "kvi_frame.h"
#include "KviMemory.h"
-#include "kvi_memmove.h"
+#include "KviMemory.h"
#include "KviThread.h"
#include "kvi_ircsocket.h"
#include "kvi_settings.h"
@@ -751,7 +751,7 @@ bool KviDccChatThread::handleIncomingData(KviDccThreadIncomingData * data,bool b
{
// memmove the remaining part to the beginning
// aux points after \n or \0
- kvi_memmove(data->buffer,aux,data->iLen);
+ KviMemory::move(data->buffer,aux,data->iLen);
data->buffer = (char *)KviMemory::reallocate(data->buffer,data->iLen);
end = data->buffer + data->iLen;
aux = data->buffer;