aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors
diff options
context:
space:
mode:
authorMartin Mathieson <martin.r.mathieson@googlemail.com>2011-03-02 11:16:28 +0000
committerMartin Mathieson <martin.r.mathieson@googlemail.com>2011-03-02 11:16:28 +0000
commitc5c01953622814ba4ad758c67be957c74630d762 (patch)
treecf9077e692fae9895fabe57cc66d5a226ffdc7dc /epan/dissectors
parent2009cc6f1794054e4a9cd8f9dbfacc73ef833157 (diff)
Don't overwrite isPhyRetx field for UL frames with DL check.
svn path=/trunk/; revision=36118
Diffstat (limited to 'epan/dissectors')
-rw-r--r--epan/dissectors/packet-mac-lte.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/epan/dissectors/packet-mac-lte.c b/epan/dissectors/packet-mac-lte.c
index 0d8713758c..29f749e60e 100644
--- a/epan/dissectors/packet-mac-lte.c
+++ b/epan/dissectors/packet-mac-lte.c
@@ -2830,8 +2830,10 @@ static void dissect_ulsch_or_dlsch(tvbuff_t *tvb, packet_info *pinfo, proto_tree
if (direction == DIRECTION_DOWNLINK) {
/* Result will be added to context tree */
TrackReportedDLHARQResend(pinfo, tvb, offset, context_tree, p_mac_lte_info);
+
+ tap_info->isPHYRetx = (p_mac_lte_info->dl_retx == dl_retx_yes);
}
- tap_info->isPHYRetx = (p_mac_lte_info->dl_retx == dl_retx_yes);
+
/* Now padding, if present, extends to the end of the PDU */