diff options
author | joe <joe@FreeBSD.org> | 2001-11-14 21:33:42 +0800 |
---|---|---|
committer | joe <joe@FreeBSD.org> | 2001-11-14 21:33:42 +0800 |
commit | 73a7d7ebc47db2be0b0cd36ced173ffa5c04871e (patch) | |
tree | 51d09d86c189c7583908d15f88d1976cd2227584 /CVSROOT/log_accum.pl | |
parent | 7f569dab654ac8496b9bbc5249fa0934e9495ffe (diff) | |
download | freebsd-ports-gnome-73a7d7ebc47db2be0b0cd36ced173ffa5c04871e.tar.gz freebsd-ports-gnome-73a7d7ebc47db2be0b0cd36ced173ffa5c04871e.tar.zst freebsd-ports-gnome-73a7d7ebc47db2be0b0cd36ced173ffa5c04871e.zip |
Whoops, reverse the sense of a test.
Submitted by: tobez
Diffstat (limited to 'CVSROOT/log_accum.pl')
-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"; } |