diff options
Diffstat (limited to 'src/modules/m_bcrypt.cpp')
| -rw-r--r-- | src/modules/m_bcrypt.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_bcrypt.cpp b/src/modules/m_bcrypt.cpp index cac81cfa1..9ae763027 100644 --- a/src/modules/m_bcrypt.cpp +++ b/src/modules/m_bcrypt.cpp @@ -87,7 +87,7 @@ public: void ReadConfig(ConfigStatus& status) override { const auto& conf = ServerInstance->Config->ConfValue("bcrypt"); - bcrypt.rounds = conf->getUInt("rounds", 10, 1); + bcrypt.rounds = conf->getNum<unsigned long>("rounds", 10, 1); } }; |
