From 3e2ad5009c0fb2c8a7b3a04438ad1e449c764dcc Mon Sep 17 00:00:00 2001 From: Luiz Augusto von Dentz Date: Wed, 20 Apr 2022 16:43:31 -0700 Subject: [PATCH] btmon: Fix decoding of Enhanced Credit Connection Request This fixes the decoding of Enhanced Credit Connection Request which was not accounting the fields correctly causing 2 extra Source CID to be printed. --- monitor/l2cap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/monitor/l2cap.c b/monitor/l2cap.c index 4e449854a..01825ce0a 100644 --- a/monitor/l2cap.c +++ b/monitor/l2cap.c @@ -1331,7 +1331,7 @@ static void sig_ecred_conn_req(const struct l2cap_frame *frame) const struct bt_l2cap_pdu_ecred_conn_req *pdu = frame->data; uint16_t scid; - l2cap_frame_pull((void *)frame, frame, sizeof(pdu)); + l2cap_frame_pull((void *)frame, frame, sizeof(*pdu)); print_psm(pdu->psm); print_field("MTU: %u", le16_to_cpu(pdu->mtu)); -- 2.47.3