aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2020-03-25 13:18:27 +0000
committerAnders Broman <a.broman58@gmail.com>2020-03-25 15:13:10 +0000
commit7b8ea03c6472c0f52b17e13324826839eb871dd3 (patch)
treed138c4c59e20fae18f3673f9ada0f9a549db005e
parent9f5be6f7eba95c9c39b00a12f2dfe938436b7b0f (diff)
lltd: fix typo found by lintian (Phyiscal => Physical)
Change-Id: I697ea60c2a31b18175f2e57fd7721888d5f99668 Reviewed-on: https://code.wireshark.org/review/36568 Petri-Dish: Anders Broman <a.broman58@gmail.com> Tested-by: Petri Dish Buildbot Reviewed-by: Anders Broman <a.broman58@gmail.com>
-rw-r--r--epan/dissectors/packet-lltd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-lltd.c b/epan/dissectors/packet-lltd.c
index 9c2d1db983..9c6d024cd1 100644
--- a/epan/dissectors/packet-lltd.c
+++ b/epan/dissectors/packet-lltd.c
@@ -505,7 +505,7 @@ dissect_lltd_tlv(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, guint32 of
case 0x15: /* 802.11 Physical Medium */
if (length != 1)
{
- expert_add_info_format(pinfo, tlv_item, &ei_lltd_tlv_length_invalid, "Invalid 802.11 Phyiscal Medium length");
+ expert_add_info_format(pinfo, tlv_item, &ei_lltd_tlv_length_invalid, "Invalid 802.11 Physical Medium length");
}
proto_tree_add_item(tlv_tree, hf_lltd_80211_physical_medium, tvb, offset+2, 1, ENC_BIG_ENDIAN);