From c087355c48f105e8836c2d75ba9e222dd9985827 Mon Sep 17 00:00:00 2001 From: J-P Nurmi Date: Wed, 3 Sep 2014 23:44:17 +0200 Subject: [PATCH] makeconf: fix indentation of LoadModule lines 7387f00 missed the tabs --- src/znc.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/znc.cpp b/src/znc.cpp index 14310475..171689fc 100644 --- a/src/znc.cpp +++ b/src/znc.cpp @@ -721,7 +721,7 @@ bool CZNC::WriteNewConfig(const CString& sConfigFile) { vector vsUserModNames; for (set::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 vsNetworkModNames; for (set::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()) + "]");