Skip to content

Commit

Permalink
scripts/get_maintainer.pl: allow 8 bit characters in email addresses
Browse files Browse the repository at this point in the history
Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
  • Loading branch information
Joe Perches authored and Linus Torvalds committed Jun 17, 2009
1 parent 0a79c49 commit df4cc03
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/get_maintainer.pl
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@

# rfc822 email address - preloaded methods go here.
my $rfc822_lwsp = "(?:(?:\\r\\n)?[ \\t])";
my $rfc822_char = '[\\000-\\177]';
my $rfc822_char = '[\\000-\\377]';

if (!GetOptions(
'email!' => \$email,
Expand Down

0 comments on commit df4cc03

Please sign in to comment.