From: Daniel Stenberg Date: Fri, 2 Jan 2026 09:59:43 +0000 (+0100) Subject: badwords.pl: don't mention the whitelisted finds X-Git-Tag: curl-8_18_0~38 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7e48a34bf8f1a3ab0118ef19f01080571886599a;p=thirdparty%2Fcurl.git badwords.pl: don't mention the whitelisted finds They obscure the real finds Closes #20158 --- diff --git a/.github/scripts/badwords.pl b/.github/scripts/badwords.pl index 1fde5ec473..255cb92c8f 100755 --- a/.github/scripts/badwords.pl +++ b/.github/scripts/badwords.pl @@ -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; }