aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/get_maintainer.pl
diff options
context:
space:
mode:
authorJoe Perches <joe@perches.com>2009-06-16 18:34:02 -0400
committerLinus Torvalds <torvalds@linux-foundation.org>2009-06-16 22:47:54 -0400
commitd789504ab03c27b194170262cb4ffda38905c5c0 (patch)
tree596c8a9f612526c9460466b1562d2ce21aefd18a /scripts/get_maintainer.pl
parent1b5e1cf64a7a376417457c7f2b3885decea276e4 (diff)
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>
Diffstat (limited to 'scripts/get_maintainer.pl')
-rwxr-xr-xscripts/get_maintainer.pl1
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/get_maintainer.pl b/scripts/get_maintainer.pl
index 7cf4309932f3..159ce64ad26b 100755
--- a/scripts/get_maintainer.pl
+++ b/scripts/get_maintainer.pl
@@ -356,6 +356,7 @@ sub format_email {
356 my ($name, $email) = @_; 356 my ($name, $email) = @_;
357 357
358 $name =~ s/^\s+|\s+$//g; 358 $name =~ s/^\s+|\s+$//g;
359 $name =~ s/^\"|\"$//g;
359 $email =~ s/^\s+|\s+$//g; 360 $email =~ s/^\s+|\s+$//g;
360 361
361 my $formatted_email = ""; 362 my $formatted_email = "";