aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2020-03-25 13:16:06 +0000
committerAnders Broman <a.broman58@gmail.com>2020-03-25 15:13:03 +0000
commit9f5be6f7eba95c9c39b00a12f2dfe938436b7b0f (patch)
tree3e9e2aac86b30bd6f476b63cdd303a82eb8ddba7
parenta7a44755f11acc0ee6398c10344a35541d476011 (diff)
fix typo found by lintian (Uknown => Unknown)
Change-Id: I50ae0d1595cc42b3432f4611009c9c48b4cdde70 Reviewed-on: https://code.wireshark.org/review/36567 Reviewed-by: Anders Broman <a.broman58@gmail.com>
-rw-r--r--epan/dissectors/packet-btbnep.c2
-rw-r--r--epan/dissectors/packet-isis-lsp.c2
-rw-r--r--epan/wslua/wslua_pinfo.c2
3 files changed, 3 insertions, 3 deletions
diff --git a/epan/dissectors/packet-btbnep.c b/epan/dissectors/packet-btbnep.c
index 27f4b4488d..c7b016a065 100644
--- a/epan/dissectors/packet-btbnep.c
+++ b/epan/dissectors/packet-btbnep.c
@@ -496,7 +496,7 @@ proto_register_btbnep(void)
NULL, HFILL }
},
{ &hf_btbnep_unknown_control_type,
- { "Unknown Control Type", "btbnep.uknown_control_type",
+ { "Unknown Control Type", "btbnep.unknown_control_type",
FT_UINT8, BASE_HEX, VALS(control_type_vals), 0x00,
NULL, HFILL }
},
diff --git a/epan/dissectors/packet-isis-lsp.c b/epan/dissectors/packet-isis-lsp.c
index 0ceb75bcb0..4bbacd65b1 100644
--- a/epan/dissectors/packet-isis-lsp.c
+++ b/epan/dissectors/packet-isis-lsp.c
@@ -3566,7 +3566,7 @@ dissect_lsp_srv6_locator_subclv(tvbuff_t *tvb, packet_info *pinfo, proto_tree *s
default:
proto_tree_add_expert_format(subtree, pinfo, &ei_isis_lsp_subtlv, tvb,
offset, clv_len,
- "Uknown Sub-TLV: Type: %u, Length: %u", clv_code, clv_len);
+ "Unknown Sub-TLV: Type: %u, Length: %u", clv_code, clv_len);
break;
}
}
diff --git a/epan/wslua/wslua_pinfo.c b/epan/wslua/wslua_pinfo.c
index 38ce44de9a..adebee9ea9 100644
--- a/epan/wslua/wslua_pinfo.c
+++ b/epan/wslua/wslua_pinfo.c
@@ -397,7 +397,7 @@ static int Pinfo_set_conversation(lua_State *L) {
conversation_t *conversation;
if (!proto->handle) {
- luaL_error(L,"Proto %s has no registered dissector", proto->name? proto->name:"<UKNOWN>");
+ luaL_error(L,"Proto %s has no registered dissector", proto->name? proto->name:"<UNKNOWN>");
return 0;
}