Really fix the relative timestamp bug. It was only incorrect for the ALQ

case.  It seems entries are in reverse order when read from the kernel
memory but in the right order when read from a file (i.e. ALQ).  Handle
both cases.

MFC after:	1 day
This commit is contained in:
njl 2005-12-09 14:27:03 +00:00
parent 45ca2a8268
commit f71899b1d5

View File

@ -253,7 +253,8 @@ main(int ac, char **av)
if (rflag) { if (rflag) {
if (tlast == -1) if (tlast == -1)
tlast = tnow; tlast = tnow;
fprintf(out, "%16ju ", tnow - tlast); fprintf(out, "%16ju ", !iflag ? tlast - tnow :
tnow - tlast);
tlast = tnow; tlast = tnow;
} else } else
fprintf(out, "%16ju ", tnow); fprintf(out, "%16ju ", tnow);