diff options
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 e5cbe71..eaac0cb 100755 --- a/CVSROOT/logcheck +++ b/CVSROOT/logcheck @@ -27,7 +27,7 @@ open(OUT, "> $tmpfile") || # Read the log file in, stripping 'CVS:' lines and removing trailing # white spaces. -my @log_in = map { s/^(.*)\s*$/$1/; $1 } grep { !/^CVS:/ } <IN>; +my @log_in = map { s/^(.*?)\s*$/$1/; $_ } grep { !/^CVS:/ } <IN>; # Remove leading, trailing and duplicate blank lines. my $i = 0; |