diff mbox series

[v1] Bluez: unregister-includes option is not working in bluetoothctl

Message ID 20240506074043.4200-1-quic_nakella@quicinc.com
State New
Headers show
Series [v1] Bluez: unregister-includes option is not working in bluetoothctl | expand

Commit Message

Naga Bhavani Akella May 6, 2024, 7:40 a.m. UTC
unregister includes option takes two parameters service uuid and
included service uuid, since the space between them is missing,
the menu option is not working.
When two uuids separated with space is given, it is throwing error.

Signed-off-by: Naga Bhavani Akella <quic_nakella@quicinc.com>
---
 client/main.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

--

Comments

patchwork-bot+bluetooth@kernel.org May 6, 2024, 4:30 p.m. UTC | #1
Hello:

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

On Mon, 6 May 2024 13:10:43 +0530 you wrote:
> unregister includes option takes two parameters service uuid and
> included service uuid, since the space between them is missing,
> the menu option is not working.
> When two uuids separated with space is given, it is throwing error.
> 
> Signed-off-by: Naga Bhavani Akella <quic_nakella@quicinc.com>
> 
> [...]

Here is the summary with links:
  - [v1] Bluez: unregister-includes option is not working in bluetoothctl
    https://git.kernel.org/pub/scm/bluetooth/bluez.git/?id=78af547e94d9

You are awesome, thank you!
diff mbox series

Patch

diff --git a/client/main.c b/client/main.c
index 51d08a67a..c8b0f7f1c 100644
--- a/client/main.c
+++ b/client/main.c
@@ -3060,7 +3060,7 @@  static const struct bt_shell_menu gatt_menu = {
 					"Unregister application service" },
 	{ "register-includes", "<UUID> [handle]", cmd_register_includes,
 					"Register as Included service in." },
-	{ "unregister-includes", "<Service-UUID><Inc-UUID>",
+	{ "unregister-includes", "<Service-UUID> <Inc-UUID>",
 			cmd_unregister_includes,
 				 "Unregister Included service." },
 	{ "register-characteristic",