]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
badwords.pl: don't mention the whitelisted finds
authorDaniel Stenberg <daniel@haxx.se>
Fri, 2 Jan 2026 09:59:43 +0000 (10:59 +0100)
committerDaniel Stenberg <daniel@haxx.se>
Fri, 2 Jan 2026 10:21:31 +0000 (11:21 +0100)
They obscure the real finds

Closes #20158

.github/scripts/badwords.pl

index 1fde5ec4730ff221cf64c13df21e38ddf4eaa467..255cb92c8f6c92710b1d567d15b27fea912299c0 100755 (executable)
@@ -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;
                 }