Blame SOURCES/006-pkg-setting-ini-default-section.patch

d709f2
diff --git a/pkg/setting/setting.go b/pkg/setting/setting.go
d709f2
index 19181be84e..9a745f67e4 100644
d709f2
--- a/pkg/setting/setting.go
d709f2
+++ b/pkg/setting/setting.go
d709f2
@@ -387,7 +387,7 @@ func applyCommandLineDefaultProperties(props map[string]string, file *ini.File)
d709f2
 func applyCommandLineProperties(props map[string]string, file *ini.File) {
d709f2
 	for _, section := range file.Sections() {
d709f2
 		sectionName := section.Name() + "."
d709f2
-		if section.Name() == ini.DefaultSection {
d709f2
+		if section.Name() == ini.DEFAULT_SECTION {
d709f2
 			sectionName = ""
d709f2
 		}
d709f2
 		for _, key := range section.Keys() {