Rename saslplain to saslplainauth for consistency with other auth

modules
This commit is contained in:
Alexey Sokolov
2025-02-22 16:03:46 +00:00
parent 6e9980d67f
commit af21753901
3 changed files with 1 additions and 4 deletions

View File

@@ -2066,7 +2066,7 @@ void CModules::GetDefaultMods(set<CModInfo>& ssMods,
{"chansaver", CModInfo::UserModule},
{"controlpanel", CModInfo::UserModule},
{"corecaps", CModInfo::GlobalModule},
{"saslplain", CModInfo::GlobalModule},
{"saslplainauth", CModInfo::GlobalModule},
{"simple_away", CModInfo::NetworkModule},
{"webadmin", CModInfo::GlobalModule}};

View File

@@ -1109,9 +1109,6 @@ bool CZNC::LoadGlobal(CConfig& config, CString& sError) {
if (tSavedVersion < make_tuple(1, 9)) {
vsList.push_back("corecaps");
}
if (tSavedVersion < make_tuple(1, 10)) {
vsList.push_back("saslplain");
}
for (const CString& sModLine : vsList) {
CString sModName = sModLine.Token(0);