console_handler: silence spurious message when exiting daemon

The daemon registers a custom exit command, which cause the
loop to stop. Catch this case before printing "Failed to read line"
as this is an expected case.
pull/95/head
moneromooo-monero 9 years ago
parent 14dd279fe1
commit 1980d8ebfa
No known key found for this signature in database
GPG Key ID: 686F07454D6CEFC3

@ -275,7 +275,7 @@ namespace epee
std::string command;
bool get_line_ret = m_stdin_reader.get_line(command);
if (m_stdin_reader.eos())
if (!m_running || m_stdin_reader.eos())
{
break;
}

Loading…
Cancel
Save