]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_showfile.cpp
Add ConfigTag::getUInt for reading unsigned config values.
[user/henk/code/inspircd.git] / src / modules / m_showfile.cpp
index 57c501e909c7e5704eda3ccdbde37d496cb45b33..b04b699c41b547315247f5cab057f9fa8556aaa9 100644 (file)
@@ -70,9 +70,9 @@ class CommandShowFile : public Command
        {
                introtext = tag->getString("introtext", "Showing " + name);
                endtext = tag->getString("endtext", "End of " + name);
-               intronumeric = tag->getInt("intronumeric", RPL_RULESTART, 0, 999);
-               textnumeric = tag->getInt("numeric", RPL_RULES, 0, 999);
-               endnumeric = tag->getInt("endnumeric", RPL_RULESEND, 0, 999);
+               intronumeric = tag->getUInt("intronumeric", RPL_RULESTART, 0, 999);
+               textnumeric = tag->getUInt("numeric", RPL_RULES, 0, 999);
+               endnumeric = tag->getUInt("endnumeric", RPL_RULESEND, 0, 999);
                std::string smethod = tag->getString("method");
 
                method = SF_NUMERIC;