aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules
diff options
context:
space:
mode:
authorGravatar Attila Molnar2014-06-26 00:10:46 +0200
committerGravatar Attila Molnar2014-06-26 00:10:46 +0200
commit68dba8dc27303b118fb5c7266a8459ca8ef68366 (patch)
tree0a23d34d8a198290b520e00baef1cebb455fb87c /src/modules
parentm_chghost Allow ulined servers to change the host of unregistered users (for ... (diff)
parentFix copy/paste error in m_denychans. (diff)
Merge pull request #879 from SaberUK/insp20+fix-denychans
Fix copy/paste error in m_denychans.
Diffstat (limited to 'src/modules')
-rw-r--r--src/modules/m_denychans.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_denychans.cpp b/src/modules/m_denychans.cpp
index e774e92c8..39d9e0d34 100644
--- a/src/modules/m_denychans.cpp
+++ b/src/modules/m_denychans.cpp
@@ -57,7 +57,7 @@ class ModuleDenyChannels : public Module
if (InspIRCd::Match(redirect, j->second->getString("name")))
{
bool goodchan = false;
- ConfigTagList goodchans = ServerInstance->Config->ConfTags("badchan");
+ ConfigTagList goodchans = ServerInstance->Config->ConfTags("goodchan");
for (ConfigIter k = goodchans.first; k != goodchans.second; ++k)
{
if (InspIRCd::Match(redirect, k->second->getString("name")))