aboutsummaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorJoe Perches <joe@perches.com>2009-06-16 15:34:04 -0700
committerLinus Torvalds <torvalds@linux-foundation.org>2009-06-16 19:47:54 -0700
commitdf4cc036828f6027689016a91adadee405eab104 (patch)
treeec3ed49ec84230c447425a2aa7cf9fc481a06253 /scripts
parentscripts/get_maintainer.pl: don't print maintainers when not requested (diff)
downloadlinux-dev-df4cc036828f6027689016a91adadee405eab104.tar.xz
linux-dev-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')
-rwxr-xr-xscripts/get_maintainer.pl2
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) . "\)";
# 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,