projects
/
platform
/
upstream
/
bluez.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c7856e2
)
client/player: Fix transport.send/receice tab completion
author
Luiz Augusto von Dentz
<luiz.von.dentz@intel.com>
Wed, 14 Dec 2022 21:45:20 +0000
(13:45 -0800)
committer
Ayush Garg
<ayush.garg@samsung.com>
Fri, 5 Jan 2024 10:11:34 +0000
(15:41 +0530)
Commands transport.send/receive were not settings any completion
callback so this makes sure it uses transport_generator to generate the
list of transport that could be used to send.
client/player.c
patch
|
blob
|
history
diff --git
a/client/player.c
b/client/player.c
index
a9fdf29
..
4844890
100644
(file)
--- a/
client/player.c
+++ b/
client/player.c
@@
-3653,9
+3653,11
@@
static const struct bt_shell_menu transport_menu = {
"Release Transport",
transport_generator },
{ "send", "<transport> <filename>", cmd_send_transport,
- "Send contents of a file" },
+ "Send contents of a file",
+ transport_generator },
{ "receive", "<transport> [filename]", cmd_receive_transport,
- "Get/Set file to receive" },
+ "Get/Set file to receive",
+ transport_generator },
{ "volume", "<transport> [value]", cmd_volume_transport,
"Get/Set transport volume",
transport_generator },