password: fix backspace outputting ^? on linux on echoing secure input
This commit is contained in:
parent
c23b6f8f56
commit
dc8f6924b2
|
@ -158,6 +158,13 @@ namespace
|
||||||
if (!aPass.empty())
|
if (!aPass.empty())
|
||||||
{
|
{
|
||||||
aPass.pop_back();
|
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
|
else
|
||||||
|
|
Loading…
Reference in New Issue