mirror of
https://github.com/curl/curl.git
synced 2026-04-15 00:51:42 +03: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
1 changed files with 2 additions and 2 deletions
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…
Add table
Add a link
Reference in a new issue