From 2b7bc82cf6f4ca723e1e18ee4763605248f36e8d Mon Sep 17 00:00:00 2001 From: MichaelDvP <59284019+MichaelDvP@users.noreply.github.com> Date: Mon, 4 Jan 2021 12:31:25 +0100 Subject: [PATCH] fix passwd prompt --- lib/uuid-console/src/shell.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/uuid-console/src/shell.cpp b/lib/uuid-console/src/shell.cpp index dd31fdacb..698d520c9 100644 --- a/lib/uuid-console/src/shell.cpp +++ b/lib/uuid-console/src/shell.cpp @@ -568,9 +568,9 @@ void Shell::process_password(bool completed) { function_copy(*this, completed, line_buffer_); line_buffer_.clear(); - // if (running()) { - // display_prompt(); - // } + if (running()) { + display_prompt(); + } } void Shell::invoke_command(const std::string & line) {