scripts/get_maintainer.pl: allow 8 bit characters in email addresses
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>
This commit is contained in:
parent
0a79c492bc
commit
df4cc03682
|
@ -57,7 +57,7 @@ my $penguin_chiefs = "\(" . join("|",@penguin_chief_names) . "\)";
|
||||||
|
|
||||||
# rfc822 email address - preloaded methods go here.
|
# rfc822 email address - preloaded methods go here.
|
||||||
my $rfc822_lwsp = "(?:(?:\\r\\n)?[ \\t])";
|
my $rfc822_lwsp = "(?:(?:\\r\\n)?[ \\t])";
|
||||||
my $rfc822_char = '[\\000-\\177]';
|
my $rfc822_char = '[\\000-\\377]';
|
||||||
|
|
||||||
if (!GetOptions(
|
if (!GetOptions(
|
||||||
'email!' => \$email,
|
'email!' => \$email,
|
||||||
|
|
Loading…
Reference in New Issue