From 34ca8f5f757c25c31f96f7b7e6a9c28c9ec010b6 Mon Sep 17 00:00:00 2001 From: ajt <> Date: Tue, 3 Oct 2000 18:26:51 -0800 Subject: [PATCH] [project @ 2000-10-03 19:26:51 by ajt] Cope with misformatted Maintainer files quietly rather than dying randomly --- cgi/common.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.39.5