aboutsummaryrefslogtreecommitdiffstats
path: root/epan
diff options
context:
space:
mode:
authorMartin Mathieson <martin.r.mathieson@googlemail.com>2011-02-28 12:24:45 +0000
committerMartin Mathieson <martin.r.mathieson@googlemail.com>2011-02-28 12:24:45 +0000
commit93333d8fa1f733dbc7a24de027d23621cb4535c8 (patch)
tree9c1cfccf3fdc8c2675639cd7c00237b20979d939 /epan
parente761ed72061dfe8dd85f5f78f7f56e57ac97fe7e (diff)
Make UL retx use warning, rather than error, expert level.
svn path=/trunk/; revision=36090
Diffstat (limited to 'epan')
-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);
}