aboutsummaryrefslogtreecommitdiffstats
path: root/epan
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2016-03-02 21:00:42 +0100
committerMichael Mann <mmann78@netscape.net>2016-03-02 20:43:56 +0000
commit79ead47bb47ebcd9c84b7e4a267a76a4f935746b (patch)
tree1d92206536576889c47d941ce9feadb1f013c437 /epan
parent7fac64ca8bab524d58cdf6590b2b4213bdd7434e (diff)
802.11: fix typo on RM enabled length
Change-Id: If30aae4b9b7fb6129efc6d90770b18a0ea78faf3 Reviewed-on: https://code.wireshark.org/review/14303 Reviewed-by: Michael Mann <mmann78@netscape.net>
Diffstat (limited to 'epan')
-rw-r--r--epan/dissectors/packet-gsm_a_dtap.c2
-rw-r--r--epan/dissectors/packet-ieee80211.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-gsm_a_dtap.c b/epan/dissectors/packet-gsm_a_dtap.c
index 7a53c1c337..a7be914e82 100644
--- a/epan/dissectors/packet-gsm_a_dtap.c
+++ b/epan/dissectors/packet-gsm_a_dtap.c
@@ -7718,7 +7718,7 @@ proto_register_gsm_a_dtap(void)
NULL, HFILL }
},
{ &hf_gsm_a_dtap_bearer_cap_coding_standard,
- { "Coding standard", "gsm_a.dtap.coding_standard",
+ { "Coding standard", "gsm_a.dtap.cap_coding_standard",
FT_BOOLEAN, 8, TFS(&tfs_bearer_cap_coding_standard), 0x10,
NULL, HFILL }
},
diff --git a/epan/dissectors/packet-ieee80211.c b/epan/dissectors/packet-ieee80211.c
index d152380cec..d304b031f8 100644
--- a/epan/dissectors/packet-ieee80211.c
+++ b/epan/dissectors/packet-ieee80211.c
@@ -12588,7 +12588,7 @@ dissect_rm_enabled_capabilities_ie(packet_info *pinfo, proto_tree *tree,
if (tag_len != 5)
{
- expert_add_info_format(pinfo, ti_len, &ei_ieee80211_tag_length, "RM Enabled Capabilities length %u wrong, must = 4", tag_len);
+ expert_add_info_format(pinfo, ti_len, &ei_ieee80211_tag_length, "RM Enabled Capabilities length %u wrong, must = 5", tag_len);
return offset;
}
proto_item_append_text(ti, " (%d octets)", tag_len);