diff options
author | Joe Perches <joe@perches.com> | 2009-06-16 15:34:04 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-06-16 19:47:54 -0700 |
commit | df4cc036828f6027689016a91adadee405eab104 (patch) | |
tree | ec3ed49ec84230c447425a2aa7cf9fc481a06253 /scripts/get_maintainer.pl | |
parent | 0a79c492bcb1022e9a2d0bcb5ed6c624ef6641a0 (diff) | |
download | linux-3.10-df4cc036828f6027689016a91adadee405eab104.tar.gz linux-3.10-df4cc036828f6027689016a91adadee405eab104.tar.bz2 linux-3.10-df4cc036828f6027689016a91adadee405eab104.zip |
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>
Diffstat (limited to 'scripts/get_maintainer.pl')
-rwxr-xr-x | scripts/get_maintainer.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/get_maintainer.pl b/scripts/get_maintainer.pl index e57c3f6eede..19854f51c8f 100755 --- a/scripts/get_maintainer.pl +++ b/scripts/get_maintainer.pl @@ -57,7 +57,7 @@ my $penguin_chiefs = "\(" . join("|",@penguin_chief_names) . "\)"; # 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, |