aboutsummaryrefslogtreecommitdiff
path: root/src/modules/m_bcrypt.cpp
diff options
context:
space:
mode:
authorGravatar Peter Powell2018-04-14 15:43:03 +0100
committerGravatar Peter Powell2018-04-16 15:29:55 +0100
commit780dda83ba3857bc3c330d4b5d38bb251a9d879b (patch)
tree75034915142a3e1362f0f9d59c8e96e1eec22931 /src/modules/m_bcrypt.cpp
parentConvert ConfigTag::getDuration to return an unsigned long. (diff)
Add ConfigTag::getUInt for reading unsigned config values.
Diffstat (limited to 'src/modules/m_bcrypt.cpp')
-rw-r--r--src/modules/m_bcrypt.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_bcrypt.cpp b/src/modules/m_bcrypt.cpp
index 1698b0727..787d5eab0 100644
--- a/src/modules/m_bcrypt.cpp
+++ b/src/modules/m_bcrypt.cpp
@@ -975,7 +975,7 @@ class ModuleBCrypt : public Module
void ReadConfig(ConfigStatus& status) CXX11_OVERRIDE
{
ConfigTag* conf = ServerInstance->Config->ConfValue("bcrypt");
- bcrypt.rounds = conf->getInt("rounds", 10, 1);
+ bcrypt.rounds = conf->getUInt("rounds", 10, 1);
}
Version GetVersion() CXX11_OVERRIDE