From 7491795c3ded8850cee25f387f7be5363abaccfb Mon Sep 17 00:00:00 2001 From: special Date: Thu, 13 Sep 2007 10:32:37 +0000 Subject: Made m_blockcaps' parameter default to 1, not 0, since trying to block an empty line makes no sense git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@8029 e03df62e-2008-0410-955e-edbf42e46eb7 --- src/modules/m_blockcaps.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/modules') diff --git a/src/modules/m_blockcaps.cpp b/src/modules/m_blockcaps.cpp index 21e08470f..893981283 100644 --- a/src/modules/m_blockcaps.cpp +++ b/src/modules/m_blockcaps.cpp @@ -105,22 +105,22 @@ public: { ConfigReader Conf(ServerInstance); percent = Conf.ReadInteger("blockcaps", "percent", "100", 0, true); - minlen = Conf.ReadInteger("blockcaps", "minlen", "0", 0, true); + minlen = Conf.ReadInteger("blockcaps", "minlen", "1", 0, true); std::string hmap = Conf.ReadValue("blockcaps", "capsmap", 0); if (hmap.empty()) hmap = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"; memset(&capsmap, 0, 255); for (std::string::iterator n = hmap.begin(); n != hmap.end(); n++) capsmap[(unsigned char)*n] = 1; - if (percent < 0 || percent > 100) + if (percent < 1 || percent > 100) { ServerInstance->Log(DEFAULT, " out of range, setting to default of 100."); percent = 100; } - if (minlen < 0 || minlen > MAXBUF-1) + if (minlen < 1 || minlen > MAXBUF-1) { - ServerInstance->Log(DEFAULT, " out of range, setting to default of 0."); - minlen = 0; + ServerInstance->Log(DEFAULT, " out of range, setting to default of 1."); + minlen = 1; } } -- cgit v1.2.3