projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5f2441e
)
scripts/get_maintainer.pl: don't print maintainers when not requested
author
Joe Perches
<
[email protected]
>
Tue, 16 Jun 2009 22:34:03 +0000
(15:34 -0700)
committer
Linus Torvalds
<
[email protected]
>
Wed, 17 Jun 2009 02:47:54 +0000
(19:47 -0700)
Fixed bug introduced after using rfc822 address checking.
Signed-off-by: Joe Perches <
[email protected]
>
Signed-off-by: Andrew Morton <
[email protected]
>
Signed-off-by: Linus Torvalds <
[email protected]
>
scripts/get_maintainer.pl
patch
|
blob
|
history
diff --git
a/scripts/get_maintainer.pl
b/scripts/get_maintainer.pl
index a1a43cffbc965930f3bd79816eaf818baf20c3e4..e57c3f6eede74e428c013b7757b7cb4ef6774e46 100755
(executable)
--- a/
scripts/get_maintainer.pl
+++ b/
scripts/get_maintainer.pl
@@
-436,10
+436,12
@@
sub push_email_address {
$email_address = $2;
}
- if ($email_usename && $email_name) {
- push(@email_to, format_email($email_name, $email_address));
- } else {
- push(@email_to, $email_address);
+ if ($email_maintainer) {
+ if ($email_usename && $email_name) {
+ push(@email_to, format_email($email_name, $email_address));
+ } else {
+ push(@email_to, $email_address);
+ }
}
}