From: special Date: Tue, 9 Jan 2007 13:21:17 +0000 (+0000) Subject: Made m_denychans support wildcards X-Git-Tag: v2.0.23~6107 X-Git-Url: https://git.netwichtig.de/gitweb/?a=commitdiff_plain;h=3282cf07a1cc1f7e11ac2bd756b739dcf97c9069;p=user%2Fhenk%2Fcode%2Finspircd.git Made m_denychans support wildcards git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@6279 e03df62e-2008-0410-955e-edbf42e46eb7 --- diff --git a/src/modules/m_denychans.cpp b/src/modules/m_denychans.cpp index cbd736869..3646690fb 100644 --- a/src/modules/m_denychans.cpp +++ b/src/modules/m_denychans.cpp @@ -15,8 +15,8 @@ #include "channels.h" #include "modules.h" #include "hashcomp.h" - #include "inspircd.h" +#include "wildcard.h" /* $ModDesc: Implements config tags which allow blocking of joins to channels */ @@ -59,9 +59,7 @@ class ModuleDenyChannels : public Module { for (int j =0; j < Conf->Enumerate("badchan"); j++) { - irc::string cn = Conf->ReadValue("badchan","name",j).c_str(); - irc::string thischan = cname; - if (thischan == cn) + if (match(cname, Conf->ReadValue("badchan","name",j).c_str())) { if ((Conf->ReadFlag("badchan","allowopers",j)) && *user->oper) {