diff options
author | joe <joe@FreeBSD.org> | 2001-05-14 04:42:13 +0800 |
---|---|---|
committer | joe <joe@FreeBSD.org> | 2001-05-14 04:42:13 +0800 |
commit | 08033c056bc434f22eb84dc6aa57c0bb1def174c (patch) | |
tree | dc42291c770cfe263c4c511659347ce393d6431c /CVSROOT | |
parent | c6913e65f13e87a82f96c0a7eba2b9db2e1038c5 (diff) | |
download | freebsd-ports-gnome-08033c056bc434f22eb84dc6aa57c0bb1def174c.tar.gz freebsd-ports-gnome-08033c056bc434f22eb84dc6aa57c0bb1def174c.tar.zst freebsd-ports-gnome-08033c056bc434f22eb84dc6aa57c0bb1def174c.zip |
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 0408f1309b9f..590972c57e90 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; } } |