From: Philippe Mathieu-Daudé Date: Tue, 2 Apr 2024 11:59:57 +0000 (+0200) Subject: scripts/checkpatch: Avoid author email mangled by qemu-*@nongnu.org X-Git-Tag: v9.1.0-rc0~131^2~5 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e3812d109663b8fee28e9334bbc12f684355984e;p=thirdparty%2Fqemu.git scripts/checkpatch: Avoid author email mangled by qemu-*@nongnu.org Commit f5177798d8 ("scripts: report on author emails that are mangled by the mailing list") added a check for qemu-devel@ list, extend the regexp to cover more such qemu-trivial@, qemu-block@ and qemu-ppc@. Signed-off-by: Philippe Mathieu-Daudé Reviewed-by: Michael Tokarev Signed-off-by: Michael Tokarev --- diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl index 70268950741..12e9028b10f 100755 --- a/scripts/checkpatch.pl +++ b/scripts/checkpatch.pl @@ -1573,7 +1573,7 @@ sub process { $is_patch = 1; } - if ($line =~ /^(Author|From): .* via .*/) { + if ($line =~ /^(Author|From): .* via .*/) { ERROR("Author email address is mangled by the mailing list\n" . $herecurr); }