The time stamp in a Wiretap packet header is now a wtap_nstime, not a

"struct timeval".

svn path=/trunk/; revision=15522
This commit is contained in:
Guy Harris 2005-08-24 23:53:40 +00:00
parent d90d0f9e7c
commit 72e862b129
1 changed files with 3 additions and 3 deletions

View File

@ -477,8 +477,8 @@ main(int argc, char **argv)
example = find_example(produce_type);
pkthdr.ts.tv_sec = 0;
pkthdr.ts.tv_usec = 0;
pkthdr.ts.secs = 0;
pkthdr.ts.nsecs = 0;
pkthdr.pkt_encap = example->sample_wtap_encap;
dump = wtap_dump_open(produce_filename, WTAP_FILE_PCAP,
@ -513,7 +513,7 @@ main(int argc, char **argv)
pkthdr.caplen = len_this_pkt;
pkthdr.len = len_this_pkt;
pkthdr.ts.tv_sec = i; /* just for variety */
pkthdr.ts.secs = i; /* just for variety */
for (j = example->sample_length; j < len_this_pkt; j++) {
/* Add format strings here and there */