diff options
author | Joe Perches <joe@perches.com> | 2009-06-16 22:34:02 (GMT) |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-06-17 02:47:54 (GMT) |
commit | d789504ab03c27b194170262cb4ffda38905c5c0 (patch) | |
tree | 596c8a9f612526c9460466b1562d2ce21aefd18a | |
parent | 1b5e1cf64a7a376417457c7f2b3885decea276e4 (diff) | |
download | linux-fsl-qoriq-d789504ab03c27b194170262cb4ffda38905c5c0.tar.xz |
scripts/get_maintainer.pl: better email name quoting
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>
-rwxr-xr-x | scripts/get_maintainer.pl | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/get_maintainer.pl b/scripts/get_maintainer.pl index 7cf4309..159ce64 100755 --- a/scripts/get_maintainer.pl +++ b/scripts/get_maintainer.pl @@ -356,6 +356,7 @@ sub format_email { my ($name, $email) = @_; $name =~ s/^\s+|\s+$//g; + $name =~ s/^\"|\"$//g; $email =~ s/^\s+|\s+$//g; my $formatted_email = ""; |