makeconf: fix indentation of LoadModule lines

7387f00 missed the tabs
This commit is contained in:
J-P Nurmi
2014-09-03 23:44:17 +02:00
parent 0908023a63
commit c087355c48
+2 -2
View File
@@ -721,7 +721,7 @@ bool CZNC::WriteNewConfig(const CString& sConfigFile) {
vector<CString> vsUserModNames;
for (set<CModInfo>::const_iterator it = ssUserMods.begin(); it != ssUserMods.end(); ++it) {
vsUserModNames.push_back(it->GetName());
vsLines.push_back("LoadModule = " + it->GetName());
vsLines.push_back("\tLoadModule = " + it->GetName());
}
CUtils::PrintMessage("Enabled the default user modules [" + CString(", ").Join(vsUserModNames.begin(), vsUserModNames.end()) + "]");
@@ -742,7 +742,7 @@ bool CZNC::WriteNewConfig(const CString& sConfigFile) {
vector<CString> vsNetworkModNames;
for (set<CModInfo>::const_iterator it = ssNetworkMods.begin(); it != ssNetworkMods.end(); ++it) {
vsNetworkModNames.push_back(it->GetName());
vsLines.push_back("LoadModule = " + it->GetName());
vsLines.push_back("\t\tLoadModule = " + it->GetName());
}
CUtils::PrintMessage("Enabled the default network modules [" + CString(", ").Join(vsNetworkModNames.begin(), vsNetworkModNames.end()) + "]");