Print raw output in reverse chronological order.

Bug #261616 r=timeless
This commit is contained in:
cls%seawood.org 2004-12-01 00:44:42 +00:00
parent 0f10bab80d
commit b6801137f2

View File

@ -328,7 +328,7 @@ if( !$show_raw ) {
}
else {
print "<pre>";
for my $ci (@$result) {
for my $ci (reverse @$result) {
$ci->[$::CI_LOG] = '';
$s = join("|",@$ci);
print "$s\n";