bluetooth: Fix dissecting of packets received on LE Coded PHY

Fix dissecting of packets received on LE Coded PHY. These packets
will include the extra field "coding indicator" after the access
address.
The assignment of phy in the common bluetooth context was missing,
leading to this field being left out and the offset being wrong.
This commit is contained in:
Joakim Andersson 2020-11-21 11:08:50 +01:00
parent 58aea1de62
commit c586f71a5c
1 changed files with 1 additions and 0 deletions

View File

@ -370,6 +370,7 @@ dissect_flags(tvbuff_t *tvb, gint offset, packet_info *pinfo, proto_tree *tree,
}
nordic_ble_context->phy = (flags >> 4) & 7;
context->phy = nordic_ble_context->phy;
if (context->pdu_type == BTLE_PDU_TYPE_DATA) {
if (dir) {