net: Fix dump time stamps

Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
This commit is contained in:
Jan Kiszka
2009-05-22 10:50:36 -05:00
committed by Anthony Liguori
parent 769ce76d0e
commit 37cb6fc37b
+2 -2
View File
@@ -1641,10 +1641,10 @@ static void dump_receive(void *opaque, const uint8_t *buf, int size)
return;
}
ts = muldiv64 (qemu_get_clock(vm_clock),1000000, ticks_per_sec);
ts = muldiv64(qemu_get_clock(vm_clock), 1000000, ticks_per_sec);
caplen = size > s->pcap_caplen ? s->pcap_caplen : size;
hdr.ts.tv_sec = ts / 1000000000LL;
hdr.ts.tv_sec = ts / 1000000;
hdr.ts.tv_usec = ts % 1000000;
hdr.caplen = caplen;
hdr.len = size;