diff mbox series

[BlueZ] client: Fix advertise.data command

Message ID 20221020225804.291712-1-luiz.dentz@gmail.com
State New
Headers show
Series [BlueZ] client: Fix advertise.data command | expand

Commit Message

Luiz Augusto von Dentz Oct. 20, 2022, 10:58 p.m. UTC
From: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>

advertise.data when no parameter is given shall print what is set on
ad.data not the ad.manufacturer which is a different field set by
advertise.manufacturer.
---
 client/advertising.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

bluez.test.bot@gmail.com Oct. 21, 2022, 12:12 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=687318

---Test result---

Test Summary:
CheckPatch                    PASS      1.03 seconds
GitLint                       PASS      0.71 seconds
Prep - Setup ELL              PASS      26.94 seconds
Build - Prep                  PASS      0.68 seconds
Build - Configure             PASS      8.32 seconds
Build - Make                  PASS      763.73 seconds
Make Check                    PASS      11.17 seconds
Make Check w/Valgrind         PASS      292.39 seconds
Make Distcheck                PASS      241.02 seconds
Build w/ext ELL - Configure   PASS      8.40 seconds
Build w/ext ELL - Make        PASS      85.42 seconds
Incremental Build w/ patches  PASS      0.00 seconds
Scan Build                    PASS      489.74 seconds



---
Regards,
Linux Bluetooth
patchwork-bot+bluetooth@kernel.org Oct. 21, 2022, 8 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 Thu, 20 Oct 2022 15:58:04 -0700 you wrote:
> From: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>
> 
> advertise.data when no parameter is given shall print what is set on
> ad.data not the ad.manufacturer which is a different field set by
> advertise.manufacturer.
> ---
>  client/advertising.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

Here is the summary with links:
  - [BlueZ] client: Fix advertise.data command
    https://git.kernel.org/pub/scm/bluetooth/bluez.git/?id=c8836711ad07

You are awesome, thank you!
diff mbox series

Patch

diff --git a/client/advertising.c b/client/advertising.c
index 097b9437f794..fb9b049fde78 100644
--- a/client/advertising.c
+++ b/client/advertising.c
@@ -760,7 +760,7 @@  void ad_advertise_data(DBusConnection *conn, int argc, char *argv[])
 	struct ad_data data;
 
 	if (argc < 2 || !strlen(argv[1])) {
-		if (ad.manufacturer.data.len) {
+		if (ad.data.data.len) {
 			bt_shell_printf("Type: 0x%02x\n", ad.data.type);
 			bt_shell_hexdump(ad.data.data.data, ad.data.data.len);
 		}