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

Fixed passing to less arguments to fmt.

This commit is contained in:
Sascha L. Teichmann 2021-12-16 03:26:25 +01:00
parent 68cab9ec58
commit 287a393b6c

View file

@ -700,7 +700,7 @@ func (p *processor) checkSecurity(domain string) error {
path := "https://" + domain + "/.well-known/security.txt"
res, err := client.Get(path)
if err != nil {
p.badSecurity("Fetching %s failed: %v", err)
p.badSecurity("Fetching %s failed: %v", path, err)
return errContinue
}