]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_messageflood.cpp
Expand searching in m_httpd_stats, add global handling of GET parameters (#1566)
[user/henk/code/inspircd.git] / src / modules / m_messageflood.cpp
index 0707e6ae4e6fa10b28389b9d7a0aa6df68ae49f2..af976afd5f057b301aaf96d26a5a404ff7513fc9 100644 (file)
@@ -83,8 +83,8 @@ class MsgFlood : public ParamMode<MsgFlood, SimpleExtItem<floodsettings> >
 
                /* Set up the flood parameters for this channel */
                bool ban = (parameter[0] == '*');
-               unsigned int nlines = ConvToInt(parameter.substr(ban ? 1 : 0, ban ? colon-1 : colon));
-               unsigned int nsecs = ConvToInt(parameter.substr(colon+1));
+               unsigned int nlines = ConvToNum<unsigned int>(parameter.substr(ban ? 1 : 0, ban ? colon-1 : colon));
+               unsigned int nsecs = ConvToNum<unsigned int>(parameter.substr(colon+1));
 
                if ((nlines<2) || (nsecs<1))
                {