summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorw00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7>2005-12-22 00:01:06 +0000
committerw00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7>2005-12-22 00:01:06 +0000
commitea7aa89d61f5090ee7e7ecbe9eb633e1189ce40a (patch)
tree192e6de68fd94e881fc93c2567558bedb9945e18
parent588c5c915aded6c23585a95ef7e048172dac712d (diff)
Fixed compile problems... Move along please, nothing to see here..
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@2609 e03df62e-2008-0410-955e-edbf42e46eb7
-rw-r--r--src/modules/m_cban.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/m_cban.cpp b/src/modules/m_cban.cpp
index f83f4dec8..ff2d142a0 100644
--- a/src/modules/m_cban.cpp
+++ b/src/modules/m_cban.cpp
@@ -67,9 +67,9 @@ class ModuleCBan : public Module
{
/* check cbans in here, and apply as necessary. */
- std::string chname(cname);
+ std::string chname = cname;
- for (vector<std::string>::iterator iterate = cbans.begin();; iterate < cbans.end(); iterate++)
+ for (vector<std::string>::iterator iterate = cbans.begin(); iterate < cbans.end(); iterate++)
{
if (chname == *iterate)
{