summaryrefslogtreecommitdiff
path: root/ui/qt/lbm_lbtru_transport_dialog.cpp
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/qt/lbm_lbtru_transport_dialog.cpp
parent21ac67cf3dc89f7626f565419507a08608bc444f (diff)
downloadwireshark-a7f470fa2476459c2013f0ee3ffe09f94fb036c2.tar.gz
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/qt/lbm_lbtru_transport_dialog.cpp')
-rw-r--r--ui/qt/lbm_lbtru_transport_dialog.cpp40
1 files changed, 20 insertions, 20 deletions
diff --git a/ui/qt/lbm_lbtru_transport_dialog.cpp b/ui/qt/lbm_lbtru_transport_dialog.cpp
index 807df9580a..447f1829fa 100644
--- a/ui/qt/lbm_lbtru_transport_dialog.cpp
+++ b/ui/qt/lbm_lbtru_transport_dialog.cpp
@@ -624,19 +624,19 @@ void LBMLBTRUSourceTransportEntry::processPacket(const packet_info * pinfo, cons
{
if (m_first_frame_timestamp_valid)
{
- if (nstime_cmp(&(pinfo->fd->abs_ts), &m_first_frame_timestamp) < 0)
+ if (nstime_cmp(&(pinfo->abs_ts), &m_first_frame_timestamp) < 0)
{
- nstime_copy(&(m_first_frame_timestamp), &(pinfo->fd->abs_ts));
+ nstime_copy(&(m_first_frame_timestamp), &(pinfo->abs_ts));
}
}
else
{
- nstime_copy(&(m_first_frame_timestamp), &(pinfo->fd->abs_ts));
+ nstime_copy(&(m_first_frame_timestamp), &(pinfo->abs_ts));
m_first_frame_timestamp_valid = true;
}
- if (nstime_cmp(&(pinfo->fd->abs_ts), &m_last_frame_timestamp) > 0)
+ if (nstime_cmp(&(pinfo->abs_ts), &m_last_frame_timestamp) > 0)
{
- nstime_copy(&(m_last_frame_timestamp), &(pinfo->fd->abs_ts));
+ nstime_copy(&(m_last_frame_timestamp), &(pinfo->abs_ts));
}
if (tap_info->type == LBTRU_PACKET_TYPE_DATA)
{
@@ -873,19 +873,19 @@ void LBMLBTRUSourceEntry::processPacket(const packet_info * pinfo, const lbm_lbt
if (m_first_frame_timestamp_valid)
{
- if (nstime_cmp(&(pinfo->fd->abs_ts), &m_first_frame_timestamp) < 0)
+ if (nstime_cmp(&(pinfo->abs_ts), &m_first_frame_timestamp) < 0)
{
- nstime_copy(&(m_first_frame_timestamp), &(pinfo->fd->abs_ts));
+ nstime_copy(&(m_first_frame_timestamp), &(pinfo->abs_ts));
}
}
else
{
- nstime_copy(&(m_first_frame_timestamp), &(pinfo->fd->abs_ts));
+ nstime_copy(&(m_first_frame_timestamp), &(pinfo->abs_ts));
m_first_frame_timestamp_valid = true;
}
- if (nstime_cmp(&(pinfo->fd->abs_ts), &m_last_frame_timestamp) > 0)
+ if (nstime_cmp(&(pinfo->abs_ts), &m_last_frame_timestamp) > 0)
{
- nstime_copy(&(m_last_frame_timestamp), &(pinfo->fd->abs_ts));
+ nstime_copy(&(m_last_frame_timestamp), &(pinfo->abs_ts));
}
switch (tap_info->type)
{
@@ -1068,19 +1068,19 @@ void LBMLBTRUReceiverTransportEntry::processPacket(const packet_info * pinfo, co
{
if (m_first_frame_timestamp_valid)
{
- if (nstime_cmp(&(pinfo->fd->abs_ts), &m_first_frame_timestamp) < 0)
+ if (nstime_cmp(&(pinfo->abs_ts), &m_first_frame_timestamp) < 0)
{
- nstime_copy(&(m_first_frame_timestamp), &(pinfo->fd->abs_ts));
+ nstime_copy(&(m_first_frame_timestamp), &(pinfo->abs_ts));
}
}
else
{
- nstime_copy(&(m_first_frame_timestamp), &(pinfo->fd->abs_ts));
+ nstime_copy(&(m_first_frame_timestamp), &(pinfo->abs_ts));
m_first_frame_timestamp_valid = true;
}
- if (nstime_cmp(&(pinfo->fd->abs_ts), &m_last_frame_timestamp) > 0)
+ if (nstime_cmp(&(pinfo->abs_ts), &m_last_frame_timestamp) > 0)
{
- nstime_copy(&(m_last_frame_timestamp), &(pinfo->fd->abs_ts));
+ nstime_copy(&(m_last_frame_timestamp), &(pinfo->abs_ts));
}
switch (tap_info->type)
{
@@ -1260,19 +1260,19 @@ void LBMLBTRUReceiverEntry::processPacket(const packet_info * pinfo, const lbm_l
if (m_first_frame_timestamp_valid)
{
- if (nstime_cmp(&(pinfo->fd->abs_ts), &m_first_frame_timestamp) < 0)
+ if (nstime_cmp(&(pinfo->abs_ts), &m_first_frame_timestamp) < 0)
{
- nstime_copy(&(m_first_frame_timestamp), &(pinfo->fd->abs_ts));
+ nstime_copy(&(m_first_frame_timestamp), &(pinfo->abs_ts));
}
}
else
{
- nstime_copy(&(m_first_frame_timestamp), &(pinfo->fd->abs_ts));
+ nstime_copy(&(m_first_frame_timestamp), &(pinfo->abs_ts));
m_first_frame_timestamp_valid = true;
}
- if (nstime_cmp(&(pinfo->fd->abs_ts), &m_last_frame_timestamp) > 0)
+ if (nstime_cmp(&(pinfo->abs_ts), &m_last_frame_timestamp) > 0)
{
- nstime_copy(&(m_last_frame_timestamp), &(pinfo->fd->abs_ts));
+ nstime_copy(&(m_last_frame_timestamp), &(pinfo->abs_ts));
}
switch (tap_info->type)
{