Message ID | 20220106192306.28552-1-inga.stotland@intel.com (mailing list archive) |
---|---|
State | Superseded |
Headers | show |
Series | [BlueZ] tools/mesh: Fix help config menu help message | expand |
Context | Check | Description |
---|---|---|
tedd_an/checkpatch | success | Checkpatch PASS |
tedd_an/gitlint | success | Gitlint PASS |
tedd_an/setupell | success | Setup ELL PASS |
tedd_an/buildprep | success | Build Prep PASS |
tedd_an/build | success | Build Configuration PASS |
tedd_an/makecheck | success | Make Check PASS |
tedd_an/makecheckvalgrind | success | Make Check PASS |
tedd_an/makedistcheck | success | Make Distcheck PASS |
tedd_an/build_extell | success | Build External ELL PASS |
tedd_an/build_extell_make | success | Build Make with External ELL PASS |
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=603293 ---Test result--- Test Summary: CheckPatch PASS 1.63 seconds GitLint PASS 0.94 seconds Prep - Setup ELL PASS 45.50 seconds Build - Prep PASS 0.79 seconds Build - Configure PASS 8.94 seconds Build - Make PASS 1561.97 seconds Make Check PASS 11.73 seconds Make Check w/Valgrind PASS 471.99 seconds Make Distcheck PASS 244.69 seconds Build w/ext ELL - Configure PASS 8.97 seconds Build w/ext ELL - Make PASS 1534.51 seconds Incremental Build with patchesPASS 0.00 seconds --- Regards, Linux Bluetooth
diff --git a/tools/mesh/cfgcli.c b/tools/mesh/cfgcli.c index f815c513c..a48eace74 100644 --- a/tools/mesh/cfgcli.c +++ b/tools/mesh/cfgcli.c @@ -1291,7 +1291,7 @@ static void cmd_bind(uint32_t opcode, int argc, char *argv[]) if (!remote_has_composition(target)) { bt_shell_printf("Node composition is unknown\n"); - bt_shell_printf("Call \"get-composition\" first\n"); + bt_shell_printf("Call \"composition-get\" first\n"); return bt_shell_noninteractive_quit(EXIT_FAILURE); } @@ -1493,7 +1493,7 @@ static void cmd_pub_set(int argc, char *argv[]) if (!remote_has_composition(target)) { bt_shell_printf("Node composition is unknown\n"); - bt_shell_printf("Call \"get-composition\" first\n"); + bt_shell_printf("Call \"composition-get\" first\n"); return bt_shell_noninteractive_quit(EXIT_FAILURE); } @@ -1593,7 +1593,7 @@ static void subscription_cmd(int argc, char *argv[], uint32_t opcode) if (!remote_has_composition(target)) { bt_shell_printf("Node composition is unknown\n"); - bt_shell_printf("Call \"get-composition\" first\n"); + bt_shell_printf("Call \"composition-get\" first\n"); return bt_shell_noninteractive_quit(EXIT_FAILURE); }