aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-mac-lte.c
diff options
context:
space:
mode:
authormartinm <martinm@f5534014-38df-0310-8fa8-9805f1628bb7>2011-03-02 11:16:28 +0000
committermartinm <martinm@f5534014-38df-0310-8fa8-9805f1628bb7>2011-03-02 11:16:28 +0000
commitdbb6f6a07fcb1a463d79513a52b4a1c159bcbff5 (patch)
treecf9077e692fae9895fabe57cc66d5a226ffdc7dc /epan/dissectors/packet-mac-lte.c
parenta3f25291722c455a9403cd860c94aebe40c67b19 (diff)
Don't overwrite isPhyRetx field for UL frames with DL check.
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@36118 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/dissectors/packet-mac-lte.c')
-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 */