From: cjwatson <> Date: Fri, 19 Sep 2003 00:31:48 +0000 (-0800) Subject: [project @ 2003-09-18 17:31:48 by cjwatson] X-Git-Tag: release/2.6.0~783 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=96772f25ce0a60033c25a134c771f9c0f971733f;p=debbugs.git [project @ 2003-09-18 17:31:48 by cjwatson] Split $data->{package} on colons too when adding maintainers; should stop "Package: foo: bar" from blowing things up hideously. --- diff --git a/scripts/process.in b/scripts/process.in index 9cfe533d..7ce07e3c 100755 --- a/scripts/process.in +++ b/scripts/process.in @@ -1,5 +1,5 @@ #!/usr/bin/perl -# $Id: process.in,v 1.83 2003/09/04 23:37:40 cjwatson Exp $ +# $Id: process.in,v 1.84 2003/09/18 17:31:48 cjwatson Exp $ # # Usage: process nn # Temps: incoming/Pnn @@ -1086,7 +1086,7 @@ sub checkmaintainers { } close(SOURCES); $anymaintfound=0; $anymaintnotfound=0; - for $p (split(m/[ \t?,()]+/,$data->{package})) { + for $p (split(m/[ \t?,():]+/,$data->{package})) { $p =~ y/A-Z/a-z/; if (defined $gSubscriptionDomain) { if (defined($pkgsrc{$p})) {