badwords.pl: don't mention the whitelisted finds

They obscure the real finds

Closes #20158
This commit is contained in:
Daniel Stenberg 2026-01-02 10:59:43 +01:00
parent 438ba94461
commit 7e48a34bf8
No known key found for this signature in database
GPG Key ID: 5CC908FDB71E12C2

View File

@ -94,13 +94,13 @@ sub file {
my $ch = "$f:$l:$w";
if($wl{$ch}) {
# whitelisted filename + line + word
print STDERR "$ch found but whitelisted\n";
#print STDERR "$ch found but whitelisted\n";
next;
}
$ch = $f . "::" . $w;
if($wl{$ch}) {
# whitelisted filename + word
print STDERR "$ch found but whitelisted\n";
#print STDERR "$ch found but whitelisted\n";
next;
}