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.
This commit is contained in:
moneromooo-monero 2015-10-21 19:57:34 +01:00
parent 14dd279fe1
commit 1980d8ebfa
No known key found for this signature in database
GPG key ID: 686F07454D6CEFC3

View file

@ -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;
}