]> git.donarmstrong.com Git - debbugs.git/commitdiff
[project @ 2001-08-16 07:21:36 by doogie]
authordoogie <>
Thu, 16 Aug 2001 14:21:36 +0000 (06:21 -0800)
committerdoogie <>
Thu, 16 Aug 2001 14:21:36 +0000 (06:21 -0800)
Support extraneous whitespace in Maintainers.override.

scripts/service.in

index da4114734cabdd4856a6ab492dc2103513136654..1867c76101608a231a5f476ecb291b1f6c27fff1 100755 (executable)
@@ -1,5 +1,5 @@
 #!/usr/bin/perl
-# $Id: service.in,v 1.37 2001/07/15 09:46:16 doogie Exp $
+# $Id: service.in,v 1.38 2001/08/16 07:21:36 doogie Exp $
 # ^ more or less ^
 #
 # Usage: service <code>.nn
@@ -939,7 +939,7 @@ sub ensuremaintainersloaded {
     while (<MAINT>) {
         m/^\n$/ && next;
         m/^\s*$/ && next;
-        m/^(\S+)\s+(\S.*\S)\n$/ || &quit("maintainers.override bogus \`$_'");
+        m/^(\S+)\s+(\S.*\S)\s*\n$/ || &quit("maintainers.override bogus \`$_'");
         $a= $1; $b= $2; $a =~ y/A-Z/a-z/;
         $maintainerof{$1}= $2;
     }