From: ajt <> Date: Wed, 4 Oct 2000 02:26:51 +0000 (-0800) Subject: [project @ 2000-10-03 19:26:51 by ajt] X-Git-Tag: release/2.6.0~1256 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=34ca8f5f757c25c31f96f7b7e6a9c28c9ec010b6;p=debbugs.git [project @ 2000-10-03 19:26:51 by ajt] Cope with misformatted Maintainer files quietly rather than dying randomly --- diff --git a/cgi/common.pl b/cgi/common.pl index fdf8e68f..3a6753cf 100644 --- a/cgi/common.pl +++ b/cgi/common.pl @@ -291,7 +291,7 @@ sub getmaintainers { open(MM,"$gMaintainerFile") or &quit("open $gMaintainerFile: $!"); while() { - m/^(\S+)\s+(\S.*\S)\s*$/ or &quit("$gMaintainerFile: \`$_'"); + next unless m/^(\S+)\s+(\S.*\S)\s*$/; ($a,$b)=($1,$2); $a =~ y/A-Z/a-z/; $maintainer{$a}= $b;