diff mbox series

[BlueZ] monitor/att: Fix decoding for notifications

Message ID 20220613233419.177421-2-luiz.dentz@gmail.com
State New
Headers show
Series [BlueZ] monitor/att: Fix decoding for notifications | expand

Commit Message

Luiz Augusto von Dentz June 13, 2022, 11:34 p.m. UTC
From: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>

---
 monitor/att.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

bluez.test.bot@gmail.com June 14, 2022, 12:39 a.m. UTC | #1
This is automated email and please do not reply to this email!

Dear submitter,

Thank you for submitting the patches to the linux bluetooth mailing list.
This is a CI test results with your patch series:
PW Link:https://patchwork.kernel.org/project/bluetooth/list/?series=650006

---Test result---

Test Summary:
CheckPatch                    PASS      1.10 seconds
GitLint                       PASS      0.70 seconds
Prep - Setup ELL              PASS      37.88 seconds
Build - Prep                  PASS      0.57 seconds
Build - Configure             PASS      7.42 seconds
Build - Make                  PASS      1338.88 seconds
Make Check                    PASS      11.80 seconds
Make Check w/Valgrind         PASS      398.51 seconds
Make Distcheck                PASS      212.71 seconds
Build w/ext ELL - Configure   PASS      7.30 seconds
Build w/ext ELL - Make        PASS      1275.21 seconds
Incremental Build with patchesPASS      0.00 seconds



---
Regards,
Linux Bluetooth
patchwork-bot+bluetooth@kernel.org June 14, 2022, 8:50 p.m. UTC | #2
Hello:

This patch was applied to bluetooth/bluez.git (master)
by Luiz Augusto von Dentz <luiz.von.dentz@intel.com>:

On Mon, 13 Jun 2022 16:34:19 -0700 you wrote:
> From: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>
> 
> ---
>  monitor/att.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

Here is the summary with links:
  - [BlueZ] monitor/att: Fix decoding for notifications
    https://git.kernel.org/pub/scm/bluetooth/bluez.git/?id=ef14e6eaa7e6

You are awesome, thank you!
diff mbox series

Patch

diff --git a/monitor/att.c b/monitor/att.c
index 00db8ddaa..de70a9dc4 100644
--- a/monitor/att.c
+++ b/monitor/att.c
@@ -1547,7 +1547,7 @@  static void print_notify(const struct l2cap_frame *frame, uint16_t handle,
 		return;
 	}
 
-	attr = get_attribute(frame, handle, false);
+	attr = get_attribute(frame, handle, true);
 	if (!attr)
 		return;