Skip to content

Commit

Permalink
get_maintainer: Fix --help warning
Browse files Browse the repository at this point in the history
Using --help emits a concatenation error.  Fix it.

Signed-off-by: Joe Perches <[email protected]>
Reported-by: Paul Bolle <[email protected]>
Tested-by: Paul Bolle <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
  • Loading branch information
JoePerches authored and torvalds committed Jun 20, 2012
1 parent eb4546b commit 7dea268
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion scripts/get_maintainer.pl
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,8 @@
push(@signature_tags, "Reviewed-by:");
push(@signature_tags, "Acked-by:");

my $signature_pattern = "\(" . join("|", @signature_tags) . "\)";

# rfc822 email address - preloaded methods go here.
my $rfc822_lwsp = "(?:(?:\\r\\n)?[ \\t])";
my $rfc822_char = '[\\000-\\377]';
Expand Down Expand Up @@ -473,7 +475,6 @@ sub read_mailmap {
my @status = ();
my %deduplicate_name_hash = ();
my %deduplicate_address_hash = ();
my $signature_pattern;

my @maintainers = get_maintainers();

Expand Down

0 comments on commit 7dea268

Please sign in to comment.