aboutsummaryrefslogtreecommitdiffstats
path: root/epan
diff options
context:
space:
mode:
authorJeroen Sack <jeroen@jeroensack.nl>2015-02-22 21:37:42 +0100
committerMichal Labedzki <michal.labedzki@tieto.com>2015-02-23 09:25:31 +0000
commit4c994e3bd314733bf3ca15fed76860dfdb37cab4 (patch)
treeabc7e463c86f3d2d60771bd4de32048b53a6a8d8 /epan
parent6765bf722a7274d9475bd36f6119c4ba5c1103df (diff)
L2CAP information message contained two bits that were wrongly dissected.
Change-Id: I308b6ed1a3953676212b9c0bb6cd7fc180210534 Reviewed-on: https://code.wireshark.org/review/7323 Reviewed-by: Michal Labedzki <michal.labedzki@tieto.com>
Diffstat (limited to 'epan')
-rw-r--r--epan/dissectors/packet-btl2cap.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-btl2cap.c b/epan/dissectors/packet-btl2cap.c
index f9e01d147d..561d9ffcea 100644
--- a/epan/dissectors/packet-btl2cap.c
+++ b/epan/dissectors/packet-btl2cap.c
@@ -2299,12 +2299,12 @@ proto_register_btl2cap(void)
},
{ &hf_btl2cap_info_window,
{ "Extended Window Size", "btl2cap.info_window",
- FT_UINT32, BASE_DEC, NULL, 0x01,
+ FT_UINT32, BASE_DEC, NULL, 0x0100,
"Extended Window Size support", HFILL }
},
{ &hf_btl2cap_info_unicast,
{ "Unicast Connectionless Data Reception", "btl2cap.info_unicast",
- FT_UINT32, BASE_DEC, NULL, 0x02,
+ FT_UINT32, BASE_DEC, NULL, 0x0200,
"Unicast Connectionless Data Reception support", HFILL }
},
{ &hf_btl2cap_info_fixedchans,