diff options
author | Guy Harris <guy@alum.mit.edu> | 2005-08-24 23:53:40 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2005-08-24 23:53:40 +0000 |
commit | 72e862b129dec2d991f8255314ff03d863349aa0 (patch) | |
tree | d67a8931fcbec622ad5e5a93fe6a8e5f685ebfb4 /randpkt.c | |
parent | d90d0f9e7c88766a943b53dc268d4421bad44ee9 (diff) | |
download | wireshark-72e862b129dec2d991f8255314ff03d863349aa0.tar.gz wireshark-72e862b129dec2d991f8255314ff03d863349aa0.tar.bz2 wireshark-72e862b129dec2d991f8255314ff03d863349aa0.zip |
The time stamp in a Wiretap packet header is now a wtap_nstime, not a
"struct timeval".
svn path=/trunk/; revision=15522
Diffstat (limited to 'randpkt.c')
-rw-r--r-- | randpkt.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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 */ |