mirror of
https://github.com/curl/curl.git
synced 2026-04-11 12:01:42 +08:00
badwords.pl: don't mention the whitelisted finds
They obscure the real finds Closes #20158
This commit is contained in:
parent
438ba94461
commit
7e48a34bf8
4
.github/scripts/badwords.pl
vendored
4
.github/scripts/badwords.pl
vendored
@ -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;
|
||||
}
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user