diff options
author | Joe Perches <joe@perches.com> | 2009-06-16 18:34:04 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-06-16 22:47:54 -0400 |
commit | df4cc036828f6027689016a91adadee405eab104 (patch) | |
tree | ec3ed49ec84230c447425a2aa7cf9fc481a06253 /scripts/get_maintainer.pl | |
parent | 0a79c492bcb1022e9a2d0bcb5ed6c624ef6641a0 (diff) |
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 e57c3f6eede7..19854f51c8f3 100755 --- a/scripts/get_maintainer.pl +++ b/scripts/get_maintainer.pl | |||
@@ -57,7 +57,7 @@ my $penguin_chiefs = "\(" . join("|",@penguin_chief_names) . "\)"; | |||
57 | 57 | ||
58 | # rfc822 email address - preloaded methods go here. | 58 | # rfc822 email address - preloaded methods go here. |
59 | my $rfc822_lwsp = "(?:(?:\\r\\n)?[ \\t])"; | 59 | my $rfc822_lwsp = "(?:(?:\\r\\n)?[ \\t])"; |
60 | my $rfc822_char = '[\\000-\\177]'; | 60 | my $rfc822_char = '[\\000-\\377]'; |
61 | 61 | ||
62 | if (!GetOptions( | 62 | if (!GetOptions( |
63 | 'email!' => \$email, | 63 | 'email!' => \$email, |