aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-mac-lte.c
diff options
context:
space:
mode:
authormartinm <martinm@f5534014-38df-0310-8fa8-9805f1628bb7>2011-02-28 12:24:45 +0000
committermartinm <martinm@f5534014-38df-0310-8fa8-9805f1628bb7>2011-02-28 12:24:45 +0000
commit36551f51b0eec92b01ea6b4459cddec4c48cf893 (patch)
tree9c1cfccf3fdc8c2675639cd7c00237b20979d939 /epan/dissectors/packet-mac-lte.c
parentdf0cf6ef9dd19f2a2c247ac51a923362ad633552 (diff)
Make UL retx use warning, rather than error, expert level.
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@36090 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/dissectors/packet-mac-lte.c')
-rw-r--r--epan/dissectors/packet-mac-lte.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-mac-lte.c b/epan/dissectors/packet-mac-lte.c
index 1aa4fa76c8..bcca4f27e8 100644
--- a/epan/dissectors/packet-mac-lte.c
+++ b/epan/dissectors/packet-mac-lte.c
@@ -3122,7 +3122,7 @@ void dissect_mac_lte(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
PROTO_ITEM_SET_GENERATED(retx_ti);
if (p_mac_lte_info->reTxCount >= global_mac_lte_retx_counter_trigger) {
- expert_add_info_format(pinfo, retx_ti, PI_SEQUENCE, PI_ERROR,
+ expert_add_info_format(pinfo, retx_ti, PI_SEQUENCE, PI_WARN,
"UE %u: UL MAC frame ReTX no. %u",
p_mac_lte_info->ueid, p_mac_lte_info->reTxCount);
}