From: Luiz Augusto von Dentz <luiz.von.dentz@xxxxxxxxx> Only the input given as argument shall be processed, all the rest shall be ignored. --- src/shared/shell.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/shared/shell.c b/src/shared/shell.c index 7f726c2dd..bf07d034f 100644 --- a/src/shared/shell.c +++ b/src/shared/shell.c @@ -417,6 +417,9 @@ void bt_shell_hexdump(const unsigned char *buf, size_t len) void bt_shell_prompt_input(const char *label, const char *msg, bt_shell_prompt_input_func func, void *user_data) { + if (!data.init || data.mode) + return; + /* Normal use should not prompt for user input to the value a second * time before it releases the prompt, but we take a safe action. */ if (data.saved_prompt) -- 2.14.3 -- To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html