···128128 // If we don't recognize the section, we may be reading a newer index than the current version. Use
129129 // a "dummy section" struct to skip over it.
130130 skipSection = true
131131- log.Printf("encountered malformed index section (%s), skipping over it", tag)
131131+ log.Printf("encountered unrecognized index section (%s), skipping over it", tag)
132132133133 switch sectionKind(kind) {
134134 case sectionKindSimple:
135135 sec = &simpleSection{}
136136 case sectionKindCompound:
137137- sec = &lazyCompoundSection{}
137137+ sec = &compoundSection{}
138138 case sectionKindCompoundLazy:
139139 sec = &lazyCompoundSection{}
140140 default: