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>
This commit is contained in:
Alexis La Goutte 2020-03-25 13:16:06 +00:00 committed by Anders Broman
parent a7a44755f1
commit 9f5be6f7eb
3 changed files with 3 additions and 3 deletions

View File

@ -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 }
},

View File

@ -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;
}
}

View File

@ -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;
}