mirror of
https://github.com/monero-project/monero.git
synced 2024-12-23 12:09:54 +00:00
Merge pull request #4549
dc8f6924
password: fix backspace outputting ^? on linux on echoing secure input (moneromooo-monero)
This commit is contained in:
commit
ae5ca0bea1
1 changed files with 7 additions and 0 deletions
|
@ -158,6 +158,13 @@ namespace
|
|||
if (!aPass.empty())
|
||||
{
|
||||
aPass.pop_back();
|
||||
if (!hide_input)
|
||||
std::cout << "\b\b\b \b\b\b" << std::flush;
|
||||
}
|
||||
else
|
||||
{
|
||||
if (!hide_input)
|
||||
std::cout << "\b\b \b\b" << std::flush;
|
||||
}
|
||||
}
|
||||
else
|
||||
|
|
Loading…
Reference in a new issue