From ea7aa89d61f5090ee7e7ecbe9eb633e1189ce40a Mon Sep 17 00:00:00 2001 From: w00t Date: Thu, 22 Dec 2005 00:01:06 +0000 Subject: 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 --- src/modules/m_cban.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/modules') 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::iterator iterate = cbans.begin();; iterate < cbans.end(); iterate++) + for (vector::iterator iterate = cbans.begin(); iterate < cbans.end(); iterate++) { if (chname == *iterate) { -- cgit v1.2.3