diff options
| author | 2026-03-12 01:10:05 +0000 | |
|---|---|---|
| committer | 2026-03-12 01:10:05 +0000 | |
| commit | e9664f13ebac1de56fb28bd6483779a988aac28a (patch) | |
| tree | 94ca821ace7159af9994d727879e3de694ac769f /src/configreader.cpp | |
| parent | Fix the name of the sharebans module. (diff) | |
Fix some missing module compat entries.
Diffstat (limited to 'src/configreader.cpp')
| -rw-r--r-- | src/configreader.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/configreader.cpp b/src/configreader.cpp index 529311a96..1b7ac6195 100644 --- a/src/configreader.cpp +++ b/src/configreader.cpp @@ -681,7 +681,7 @@ std::vector<std::string> ServerConfig::GetModules() const if (insp::equalsci(shortname, "argon2")) modules.push_back("hash_argon2"); else if (insp::equalsci(shortname, "banredirect")) - modules.push_back("banredirect"); + modules.push_back("redirect"); else if (insp::equalsci(shortname, "bcrypt")) modules.push_back("hash_bcrypt"); else if (insp::equalsci(shortname, "chghost")) @@ -692,6 +692,8 @@ std::vector<std::string> ServerConfig::GetModules() const modules.push_back("setname"); else if (insp::equalsci(shortname, "password_hash")) modules.push_back("mkpasswd"); + else if (insp::equalsci(shortname, "pbkdf2")) + modules.push_back("hash_pbkdf2"); else if (insp::equalsci(shortname, "sha1")) modules.push_back("hash_sha1"); else if (insp::equalsci(shortname, "sha2")) |
