From 4a9f8a6f031240cd50b12a4fbff4526cfa9dc792 Mon Sep 17 00:00:00 2001 From: JanHoefelmeyer Date: Tue, 21 Nov 2023 12:14:45 +0100 Subject: [PATCH] Change: cmd/csaf_checker/processor.go: Improve comment --- cmd/csaf_checker/processor.go | 1 + 1 file changed, 1 insertion(+) diff --git a/cmd/csaf_checker/processor.go b/cmd/csaf_checker/processor.go index ac9cca4..2e61ae8 100644 --- a/cmd/csaf_checker/processor.go +++ b/cmd/csaf_checker/processor.go @@ -1411,6 +1411,7 @@ func (p *processor) checkWellknownSecurityDNS(domain string) error { // Security check for well known (default) and legacy location warningsS, sDMessage := p.checkSecurity(domain, false) // if the security.txt under .well-known was not okay + // check for a security.txt within its legacy location sLMessage := "" if warningsS == 1 { warningsS, sLMessage = p.checkSecurity(domain, true)