aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--epan/dissectors/packet-mle.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-mle.c b/epan/dissectors/packet-mle.c
index 5a2b79715b..7dbc72240a 100644
--- a/epan/dissectors/packet-mle.c
+++ b/epan/dissectors/packet-mle.c
@@ -583,7 +583,7 @@ dissect_mle(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void *data _U_)
/* Parse the security suite field. */
/* Security Suite Field */
security_suite = tvb_get_guint8(tvb, offset);
- proto_tree_add_item(mle_tree, hf_mle_security_suite, tvb, offset, 1, security_suite);
+ proto_tree_add_item(mle_tree, hf_mle_security_suite, tvb, offset, 1, ENC_NA);
offset++;
aux_header_offset = offset;
@@ -1282,7 +1282,7 @@ proto_register_mle(void)
/*----------------------------------*/
{ &hf_mle_security_suite,
{ "Security Suite",
- "wpan.aux_sec.sec_suite",
+ "mle.sec_suite",
FT_UINT8, BASE_HEX, VALS(mle_sec_suite_names), 0x0,
"The Security Suite of the frame",
HFILL