3
0
mirror of https://git.kernel.org/pub/scm/network/wireless/iwd.git synced 2024-10-02 17:38:45 +02:00

client: Update rl_point to last known position

Keep cursor's position consistent when passphrase is reaching
its maximum by adding characters in the middle of the string

The use case is very rare as not many people will attempt to
modify the masked passphrase from the middle.
This commit is contained in:
Tim Kourt 2019-10-29 16:12:35 -07:00 committed by Denis Kenzior
parent 17ee4196f4
commit f20298dc4a

View File

@ -408,7 +408,9 @@ static void mask_input(void)
return;
if (rl_end > MAX_PASSPHRASE_LEN) {
rl_point = rl_end = MAX_PASSPHRASE_LEN;
rl_end = MAX_PASSPHRASE_LEN;
rl_point = masked_input.point;
goto set_mask;
}