daemon: fix readline interfering with std::cerr usage

Once readline is initialized, std::cerr's operator<< will
output a 0xff byte for unknown reasons.
This commit is contained in:
moneromooo-monero 2018-05-31 12:13:03 +01:00
parent c534fe8d19
commit 1aae39dff2
No known key found for this signature in database
GPG Key ID: 686F07454D6CEFC3

View File

@ -262,6 +262,9 @@ int main(int argc, char const * argv[])
} }
else else
{ {
#ifdef HAVE_READLINE
rdln::suspend_readline pause_readline;
#endif
std::cerr << "Unknown command: " << command.front() << std::endl; std::cerr << "Unknown command: " << command.front() << std::endl;
return 1; return 1;
} }