aboutsummaryrefslogtreecommitdiffstats
path: root/randpkt.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2005-08-24 23:53:40 +0000
committerGuy Harris <guy@alum.mit.edu>2005-08-24 23:53:40 +0000
commit72e862b129dec2d991f8255314ff03d863349aa0 (patch)
treed67a8931fcbec622ad5e5a93fe6a8e5f685ebfb4 /randpkt.c
parentd90d0f9e7c88766a943b53dc268d4421bad44ee9 (diff)
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.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/randpkt.c b/randpkt.c
index 47e4b59713..65873fa0e0 100644
--- a/randpkt.c
+++ b/randpkt.c
@@ -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 */