lustre: fix typo

Unkown -> Unknown

Change-Id: I97b2c00a9d8a61c3d4587aa22949748398d091e6
Reviewed-on: https://code.wireshark.org/review/33247
Reviewed-by: Jaap Keuter <jaap.keuter@xs4all.nl>
This commit is contained in:
Alexis La Goutte 2019-05-18 08:17:46 +00:00 committed by Jaap Keuter
parent a0dc24dfc6
commit 74a4067967
1 changed files with 1 additions and 1 deletions

View File

@ -2003,7 +2003,7 @@ dissect_struct_llog_rec_hdr(tvbuff_t *tvb, int offset, proto_tree *parent_tree,
proto_tree_add_item(tree, hf_lustre_llog_rec_hdr_lrh_id, tvb, offset, 4, ENC_LITTLE_ENDIAN);
offset += 4;
proto_item_append_text(parent_tree, " [%02d]: %s", ind, val_to_str(type, llog_op_types, "Unkown(%x)"));
proto_item_append_text(parent_tree, " [%02d]: %s", ind, val_to_str(type, llog_op_types, "Unknown(%x)"));
return offset;
}