summaryrefslogtreecommitdiff
path: root/src/modules/m_antibottler.cpp
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-01-18 21:58:53 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-01-18 21:58:53 +0000
commitb99156d6d6886783a777d0801d519116502d3cd9 (patch)
treee77d5266e875d0aa6aa86b933507df0c2ef61c32 /src/modules/m_antibottler.cpp
parentece2c5daca87ca8b6759857a27de342e2df98b21 (diff)
Removed all strncpy() calls and replaced with strlcpy()
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@2818 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_antibottler.cpp')
-rw-r--r--src/modules/m_antibottler.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_antibottler.cpp b/src/modules/m_antibottler.cpp
index 7d7f68084..3c0f4e67b 100644
--- a/src/modules/m_antibottler.cpp
+++ b/src/modules/m_antibottler.cpp
@@ -53,7 +53,7 @@ class ModuleAntiBottler : public Module
if (inbound)
{
char data[MAXBUF];
- strncpy(data,raw.c_str(),MAXBUF);
+ strlcpy(data,raw.c_str(),MAXBUF);
bool not_bottler = false;
if (!strncmp(data,"user ",5))
{