aboutsummaryrefslogtreecommitdiffstats
path: root/epan
diff options
context:
space:
mode:
authorMichal Labedzki <michal.labedzki@tieto.com>2015-04-20 13:46:01 +0200
committerMichal Labedzki <michal.labedzki@tieto.com>2015-05-18 07:08:33 +0000
commit187dedee0359ea8c3c4cf49be7680876449c069b (patch)
tree5e6d0b166e0e588bdfca3160ed2dfafd8700c359 /epan
parentb936c23ecdfea5335c93ce366153966990ca1671 (diff)
Bluetooth: ATT: Enable UUID128 field
API used by this field is implemented, so field can be enabled now. Change-Id: Ifc8de81157c9b125ba769d14ec57a498d9810c5f Reviewed-on: https://code.wireshark.org/review/8507 Reviewed-by: Michal Labedzki <michal.labedzki@tieto.com>
Diffstat (limited to 'epan')
-rw-r--r--epan/dissectors/packet-btatt.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-btatt.c b/epan/dissectors/packet-btatt.c
index 50536133b4..94a6cc293f 100644
--- a/epan/dissectors/packet-btatt.c
+++ b/epan/dissectors/packet-btatt.c
@@ -1700,8 +1700,8 @@ dissect_handle(proto_tree *tree, packet_info *pinfo, gint hf,
if (local_uuid.size == 2)
sub_item = proto_tree_add_uint(sub_tree, hf_btatt_uuid16, tvb, 0, 0, local_uuid.bt_uuid);
-/* else
- sub_item = proto_tree_add_bytes(sub_tree, hf_btatt_uuid128, tvb, 0, 16, uuid.data);*/
+ else
+ sub_item = proto_tree_add_bytes_with_length(sub_tree, hf_btatt_uuid128, tvb, 0, 0, local_uuid.data, 16);
PROTO_ITEM_SET_GENERATED(sub_item);