diff options
author | joe <joe@FreeBSD.org> | 2001-05-13 20:42:13 +0000 |
---|---|---|
committer | joe <joe@FreeBSD.org> | 2001-05-13 20:42:13 +0000 |
commit | 08033c056bc434f22eb84dc6aa57c0bb1def174c (patch) | |
tree | dc42291c770cfe263c4c511659347ce393d6431c /CVSROOT | |
parent | c6913e65f13e87a82f96c0a7eba2b9db2e1038c5 (diff) | |
download | FreeBSD-ports-08033c056bc434f22eb84dc6aa57c0bb1def174c.zip FreeBSD-ports-08033c056bc434f22eb84dc6aa57c0bb1def174c.tar.gz |
Relax the handling of seemingly extra lines in the templated header
block at the bottom of the commit log. Committers are sometimes
wrapping lines and therefore introducing lines that don't look like
a header.
This change should return the previous behaviour.
Diffstat (limited to 'CVSROOT')
-rwxr-xr-x | CVSROOT/logcheck | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/CVSROOT/logcheck b/CVSROOT/logcheck index 0408f13..590972c 100755 --- a/CVSROOT/logcheck +++ b/CVSROOT/logcheck @@ -97,8 +97,9 @@ while ($j >= 0 and my $header = $log_in[$j]) { } } else { - print "Error: malformed line in template headers: $header\n"; - ++$error; + ## print "Error: malformed line in template headers: $header\n"; + ## ++$error; + print "Warning: malformed line in template headers: $header\n"; next; } } |