aboutsummaryrefslogtreecommitdiff
path: root/src/modules/m_dccallow.cpp
diff options
context:
space:
mode:
authorGravatar Sadie Powell2022-10-10 07:57:33 +0100
committerGravatar Sadie Powell2022-10-10 07:57:33 +0100
commitc853673b793874e34072e32ed7ebc24eec7b3051 (patch)
tree5a5f4336eafe80d98592b6bf5e59d60ea3412a7c /src/modules/m_dccallow.cpp
parentFix saving the database identifier in SQL::Provider. (diff)
Prevent having the dccallow module loaded with a zero list size.
This doesn't make sense.
Diffstat (limited to 'src/modules/m_dccallow.cpp')
-rw-r--r--src/modules/m_dccallow.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_dccallow.cpp b/src/modules/m_dccallow.cpp
index 937278768..60f4c878f 100644
--- a/src/modules/m_dccallow.cpp
+++ b/src/modules/m_dccallow.cpp
@@ -599,7 +599,7 @@ class ModuleDCCAllow : public Module
bfl.swap(newbfl);
ConfigTag* tag = ServerInstance->Config->ConfValue("dccallow");
- cmd.ext.maxentries = tag->getUInt("maxentries", 20);
+ cmd.ext.maxentries = tag->getUInt("maxentries", 20, 1);
cmd.defaultlength = tag->getDuration("length", 0);
blockchat = tag->getBool("blockchat");
defaultaction = tag->getString("action");