bacapp: fix field print.

Change-Id: I7d9d696797cbf1a212264711b28d50d99898855b
Reviewed-on: https://code.wireshark.org/review/32447
Petri-Dish: Anders Broman <a.broman58@gmail.com>
Tested-by: Petri Dish Buildbot
Reviewed-by: Anders Broman <a.broman58@gmail.com>
This commit is contained in:
Dario Lombardo 2019-03-18 09:05:34 +01:00 committed by Anders Broman
parent b5eb0c680d
commit 00416093de
1 changed files with 1 additions and 1 deletions

View File

@ -6960,7 +6960,7 @@ fPresentValue(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, guint offset,
break;
case BACAPP_PRESENT_VALUE_OCTET_STRING:
if (lvt > 0)
tree_item = proto_tree_add_string(tree, hf_bacapp_present_value_octet_string, tvb, offset, lvt+tag_len, NULL);
tree_item = proto_tree_add_item(tree, hf_bacapp_present_value_octet_string, tvb, offset, lvt+tag_len, ENC_NA);
curr_offset += tag_len + lvt;
break;
case BACAPP_PRESENT_VALUE_CHARACTER_STRING: