1
0
Fork 0
mirror of https://github.com/gocsaf/csaf.git synced 2025-12-22 11:55:40 +01:00

Unify camel case spelling of message tracking.

This commit is contained in:
Sascha L. Teichmann 2023-06-15 14:18:46 +02:00
parent b5d1924d3f
commit 71a3c3a13b
4 changed files with 36 additions and 36 deletions

View file

@ -67,9 +67,9 @@ type processor struct {
badWellknownMetadata topicMessages
badDNSPath topicMessages
badDirListings topicMessages
badROLIEfeed topicMessages
badROLIEservice topicMessages
badROLIEcategory topicMessages
badROLIEFeed topicMessages
badROLIEService topicMessages
badROLIECategory topicMessages
expr *util.PathEval
}
@ -235,9 +235,9 @@ func (p *processor) clean() {
p.badWellknownMetadata.reset()
p.badDNSPath.reset()
p.badDirListings.reset()
p.badROLIEfeed.reset()
p.badROLIEservice.reset()
p.badROLIEcategory.reset()
p.badROLIEFeed.reset()
p.badROLIEService.reset()
p.badROLIECategory.reset()
p.labelChecker = nil
}
@ -685,7 +685,7 @@ func (p *processor) integrity(
// Extract the tlp level of the entry
if tlpa, err := p.expr.Eval(
`$.document.distribution`, doc); err != nil {
p.badROLIEfeed.error(
p.badROLIEFeed.error(
"Extracting 'tlp level' from %s failed: %v", u, err)
} else {
tlpe := extractTLP(tlpa)