From 7e48a34bf8f1a3ab0118ef19f01080571886599a Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Fri, 2 Jan 2026 10:59:43 +0100 Subject: [PATCH] badwords.pl: don't mention the whitelisted finds They obscure the real finds Closes #20158 --- .github/scripts/badwords.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; }