]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/helperfuncs.cpp
add service install and remove calls to installer.
[user/henk/code/inspircd.git] / src / helperfuncs.cpp
index 7b23025e04694c0ea6be76be1cc9549e74817657..31f486a48c753ac06739410dd90edc4caa4f75e4 100644 (file)
@@ -11,7 +11,7 @@
  * ---------------------------------------------------
  */
 
-/* $Core: libIRCDhelper */
+/* $Core */
 
 #include "inspircd.h"
 #include "wildcard.h"
@@ -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