diff options
-rwxr-xr-x | CVSROOT/log_accum.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CVSROOT/log_accum.pl b/CVSROOT/log_accum.pl index 5c2f0b2eca52..cef63548d438 100755 --- a/CVSROOT/log_accum.pl +++ b/CVSROOT/log_accum.pl @@ -710,7 +710,7 @@ for ($message_index = 0; ; $message_index++) { last unless -e "$LOG_FILE.$message_index"; my @text = &read_logfile("$LOG_FILE.$message_index"); - last if @text; + last unless @text; last if "@log_lines" eq "@text"; } |