diff options
author | Joe Perches <joe@perches.com> | 2009-06-16 15:33:59 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-06-16 19:47:53 -0700 |
commit | bdf7c685aa4639c95a752b52fa06741a7e3bb34e (patch) | |
tree | 09d9d1710b9fe1e0b24ed6389702974cd65bdcad /scripts | |
parent | 290603c1205242691b8a0963f496d0aa80e9ca02 (diff) | |
download | linux-bdf7c685aa4639c95a752b52fa06741a7e3bb34e.tar.bz2 |
scripts/get_maintainer.pl: better fix for subscriber-only mailing lists
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-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 c4b25a7a2599..f302ad3759f3 100755 --- a/scripts/get_maintainer.pl +++ b/scripts/get_maintainer.pl @@ -380,7 +380,7 @@ sub add_categories { $list_address = $1; $list_additional = $2; } - if ($list_additional =~ m/\(subscribers-only\)/) { + if ($list_additional =~ m/subscribers-only/) { if ($email_subscriber_list) { push(@list_to, $list_address); } |