]> git.netwichtig.de Git - user/henk/code/inspircd.git/commitdiff
Change extban seperator in 005 to match charybdis and unreal
authorw00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7>
Wed, 6 Aug 2008 10:51:02 +0000 (10:51 +0000)
committerw00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7>
Wed, 6 Aug 2008 10:51:02 +0000 (10:51 +0000)
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@10107 e03df62e-2008-0410-955e-edbf42e46eb7

src/helperfuncs.cpp

index 4a9ca7f19bc7cd24d81c1dcc83553a0e32eadce7..31f486a48c753ac06739410dd90edc4caa4f75e4 100644 (file)
@@ -475,9 +475,9 @@ void InspIRCd::AddExtBanChar(char c)
        std::string &tok = Config->data005;
        std::string::size_type ebpos;
        
-       if ((ebpos = tok.find(" EXTBAN=:")) == std::string::npos)
+       if ((ebpos = tok.find(" EXTBAN=,")) == std::string::npos)
        {
-               tok.append(" EXTBAN=:");
+               tok.append(" EXTBAN=,");
                tok.push_back(c);
        }
        else