X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fhelperfuncs.cpp;h=31f486a48c753ac06739410dd90edc4caa4f75e4;hb=2fdfbe85d38ee2f83e86c67f94af2e7e7efb3b9f;hp=7b23025e04694c0ea6be76be1cc9549e74817657;hpb=14e4768140d796b3cb9eb979e74e48bffabd9bfc;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/helperfuncs.cpp b/src/helperfuncs.cpp index 7b23025e0..31f486a48 100644 --- a/src/helperfuncs.cpp +++ b/src/helperfuncs.cpp @@ -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