From: w00t Date: Wed, 6 Aug 2008 10:51:02 +0000 (+0000) Subject: Change extban seperator in 005 to match charybdis and unreal X-Git-Tag: v2.0.23~2843 X-Git-Url: https://git.netwichtig.de/gitweb/?a=commitdiff_plain;h=eb154d31f7dcda835b8cbbc0b50769d7f2474894;p=user%2Fhenk%2Fcode%2Finspircd.git Change extban seperator in 005 to match charybdis and unreal git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@10107 e03df62e-2008-0410-955e-edbf42e46eb7 --- diff --git a/src/helperfuncs.cpp b/src/helperfuncs.cpp index 4a9ca7f19..31f486a48 100644 --- a/src/helperfuncs.cpp +++ b/src/helperfuncs.cpp @@ -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