aboutsummaryrefslogtreecommitdiffstats
path: root/ui/tap_export_pdu.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2016-01-22 19:57:32 -0800
committerGuy Harris <guy@alum.mit.edu>2016-01-23 03:58:56 +0000
commita7f470fa2476459c2013f0ee3ffe09f94fb036c2 (patch)
tree20bbd7547754a425f0dbee2dd29b94aae8218f11 /ui/tap_export_pdu.c
parent21ac67cf3dc89f7626f565419507a08608bc444f (diff)
More pinfo->fd->abs_ts to pinfo->abs_ts.
Change-Id: I70db0a345cc4c5c57c454371deb4f92f9ac4b9ac Reviewed-on: https://code.wireshark.org/review/13501 Reviewed-by: Guy Harris <guy@alum.mit.edu>
Diffstat (limited to 'ui/tap_export_pdu.c')
-rw-r--r--ui/tap_export_pdu.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/tap_export_pdu.c b/ui/tap_export_pdu.c
index b6a15e8db7..1fc6401703 100644
--- a/ui/tap_export_pdu.c
+++ b/ui/tap_export_pdu.c
@@ -61,8 +61,8 @@ export_pdu_packet(void *tapdata, packet_info *pinfo, epan_dissect_t *edt, const
tvb_memcpy(exp_pdu_data->pdu_tvb, packet_buf+exp_pdu_data->tlv_buffer_len, 0, exp_pdu_data->tvb_captured_length);
}
pkthdr.rec_type = REC_TYPE_PACKET;
- pkthdr.ts.secs = pinfo->fd->abs_ts.secs;
- pkthdr.ts.nsecs = pinfo->fd->abs_ts.nsecs;
+ pkthdr.ts.secs = pinfo->abs_ts.secs;
+ pkthdr.ts.nsecs = pinfo->abs_ts.nsecs;
pkthdr.caplen = buffer_len;
pkthdr.len = exp_pdu_data->tvb_reported_length + exp_pdu_data->tlv_buffer_len;