diff options
author | Peter Powell <petpow@saberuk.com> | 2013-05-18 18:55:01 +0100 |
---|---|---|
committer | Peter Powell <petpow@saberuk.com> | 2013-05-18 19:11:07 +0100 |
commit | 5c9427cde0a949a17a476311db0a2a275345337b (patch) | |
tree | bf4cea76e7270f476d3f19ec82db9885db9574c1 /src/modules/m_denychans.cpp | |
parent | 6153822a2de1867b7b90b95e8ed9bc1a8c792c84 (diff) |
Remove the size argument from IsChannel and IsNick.
There was only one case (which was probably an error) where these
methods were not set to their ServerLimits value.
Diffstat (limited to 'src/modules/m_denychans.cpp')
-rw-r--r-- | src/modules/m_denychans.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/m_denychans.cpp b/src/modules/m_denychans.cpp index 63f6f51b9..b09ee7977 100644 --- a/src/modules/m_denychans.cpp +++ b/src/modules/m_denychans.cpp @@ -45,7 +45,7 @@ class ModuleDenyChannels : public Module if (!redirect.empty()) { - if (!ServerInstance->IsChannel(redirect, ServerInstance->Config->Limits.ChanMax)) + if (!ServerInstance->IsChannel(redirect)) { if (user) user->WriteNotice("Invalid badchan redirect '" + redirect + "'"); @@ -108,7 +108,7 @@ class ModuleDenyChannels : public Module } } - if (ServerInstance->IsChannel(redirect.c_str(), ServerInstance->Config->Limits.ChanMax)) + if (ServerInstance->IsChannel(redirect)) { /* simple way to avoid potential loops: don't redirect to +L channels */ Channel *newchan = ServerInstance->FindChan(redirect); |