From a7f470fa2476459c2013f0ee3ffe09f94fb036c2 Mon Sep 17 00:00:00 2001 From: Guy Harris Date: Fri, 22 Jan 2016 19:57:32 -0800 Subject: More pinfo->fd->abs_ts to pinfo->abs_ts. Change-Id: I70db0a345cc4c5c57c454371deb4f92f9ac4b9ac Reviewed-on: https://code.wireshark.org/review/13501 Reviewed-by: Guy Harris --- ui/tap_export_pdu.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ui/tap_export_pdu.c') 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; -- cgit v1.2.3