From 1b9ee34285b3ff900ab97cdb01d9a4b199274850 Mon Sep 17 00:00:00 2001 From: Luiz Augusto von Dentz Date: Mon, 30 Mar 2020 10:28:08 -0700 Subject: [PATCH] btmgmt: Rename version command to revision version is already handled by btshell and always refer to BlueZ version rather than MGMT version, so this renames the command to revision to avoid having the clash of command names. --- tools/btmgmt.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tools/btmgmt.c b/tools/btmgmt.c index 37c1c1c9e..09d6e4272 100644 --- a/tools/btmgmt.c +++ b/tools/btmgmt.c @@ -1025,7 +1025,7 @@ done: bt_shell_noninteractive_quit(EXIT_SUCCESS); } -static void cmd_version(int argc, char **argv) +static void cmd_revision(int argc, char **argv) { if (mgmt_send(mgmt, MGMT_OP_READ_VERSION, MGMT_INDEX_NONE, 0, NULL, version_rsp, NULL, NULL) == 0) { @@ -4391,8 +4391,8 @@ static const struct bt_shell_menu main_menu = { .entries = { { "select", "", cmd_select, "Select a different index" }, - { "version", NULL, - cmd_version, "Get the MGMT Version" }, + { "revision", NULL, + cmd_revision, "Get the MGMT Revision" }, { "commands", NULL, cmd_commands, "List supported commands" }, { "config", NULL, -- 2.47.3