diff options
author | joe <joe@FreeBSD.org> | 2001-05-15 03:06:39 +0800 |
---|---|---|
committer | joe <joe@FreeBSD.org> | 2001-05-15 03:06:39 +0800 |
commit | c27f6ad879fefa77fdabda8a6da440b4d34a3cb2 (patch) | |
tree | 21a5693cf6e0242532b72b87b60ed1456d776279 /CVSROOT | |
parent | 77dccfa69ade60e1bfa0e636f965aa1c84c0eefc (diff) | |
download | freebsd-ports-gnome-c27f6ad879fefa77fdabda8a6da440b4d34a3cb2.tar.gz freebsd-ports-gnome-c27f6ad879fefa77fdabda8a6da440b4d34a3cb2.tar.zst freebsd-ports-gnome-c27f6ad879fefa77fdabda8a6da440b4d34a3cb2.zip |
Be more exact when checking for empty template entries to filter
from the log message.
Submitted by: Ian Dowse <iedowse@maths.tcd.ie>
Diffstat (limited to 'CVSROOT')
-rwxr-xr-x | CVSROOT/logcheck | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CVSROOT/logcheck b/CVSROOT/logcheck index 7b75d1c95d3e..fa4d88e9df7e 100755 --- a/CVSROOT/logcheck +++ b/CVSROOT/logcheck @@ -84,7 +84,7 @@ while ($j >= 0 and my $header = $log_in[$j]) { } # Filter out the template header if it's blank. - unless ($value) { + if ($value eq "") { splice(@log_in, $j + 1, 1); next; } |