PER: fix a typo

This commit is contained in:
Pascal Quantin 2021-01-13 16:23:03 +01:00
parent 3e84673c5f
commit 6178fe94ef
1 changed files with 1 additions and 1 deletions

View File

@ -206,7 +206,7 @@ dissect_per_open_type_internal(tvbuff_t *tvb, guint32 offset, asn1_ctx_t *actx,
if(captured_pdu_length < pdu_length){
val_tvb = tvb_new_octet_aligned(pdu_tvb, pdu_offset, captured_pdu_length * 8);
actx->created_item = proto_tree_add_expert_format(tree, actx->pinfo, &ei_per_open_type_len, tvb, pdu_offset >> 3,
captured_pdu_length,"Open type length(%i) > avalable data(%i)", pdu_length, captured_pdu_length);
captured_pdu_length,"Open type length(%i) > available data(%i)", pdu_length, captured_pdu_length);
pdu_length = captured_pdu_length;
} else {
val_tvb = tvb_new_octet_aligned(pdu_tvb, pdu_offset, pdu_length * 8);