Make UL retx use warning, rather than error, expert level.
authormartinm <martinm@f5534014-38df-0310-8fa8-9805f1628bb7>
Mon, 28 Feb 2011 12:24:45 +0000 (12:24 +0000)
committermartinm <martinm@f5534014-38df-0310-8fa8-9805f1628bb7>
Mon, 28 Feb 2011 12:24:45 +0000 (12:24 +0000)
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@36090 f5534014-38df-0310-8fa8-9805f1628bb7

epan/dissectors/packet-mac-lte.c

index 1aa4fa76c8500d1e1d471ee42af17eb5d22354fb..bcca4f27e896bb1634562d3a737e108304adf920 100644 (file)
@@ -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);
         }