From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:60151) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XgXfF-00049G-LM for qemu-devel@nongnu.org; Tue, 21 Oct 2014 07:31:50 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XgXfA-0003xK-1D for qemu-devel@nongnu.org; Tue, 21 Oct 2014 07:31:45 -0400 Received: from mx1.redhat.com ([209.132.183.28]:33343) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XgXf9-0003wO-R0 for qemu-devel@nongnu.org; Tue, 21 Oct 2014 07:31:39 -0400 Date: Tue, 21 Oct 2014 14:35:09 +0300 From: "Michael S. Tsirkin" Message-ID: <1413891300-23369-1-git-send-email-mst@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Subject: [Qemu-devel] [PATCH] scripts/get_maintainer.pl: allow "odd fixes" List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Paolo Bonzini , Gerd Hoffmann , Markus Armbruster , Peter Maydell We have a bunch of modules in "Odd fixes" status, scripts/get_maintainer.pl ignores that. Reported-by: Gerd Hoffmann Cc: Paolo Bonzini Cc: Peter Maydell Cc: Markus Armbruster Signed-off-by: Michael S. Tsirkin --- scripts/get_maintainer.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/get_maintainer.pl b/scripts/get_maintainer.pl index 38334de..d5eee8c 100755 --- a/scripts/get_maintainer.pl +++ b/scripts/get_maintainer.pl @@ -514,7 +514,7 @@ sub range_is_maintained { my $type = $1; my $value = $2; if ($type eq 'S') { - if ($value =~ /(maintain|support)/i) { + if ($value =~ /(maintain|support|fix)/i) { return 1; } } -- MST