* [PATCH 1/2] client: Increase passphrase buffer to accommodate for nil byte
@ 2019-10-29 22:33 Tim Kourt
2019-10-29 22:33 ` [PATCH 2/2] client: Update rl_point to last known position Tim Kourt
0 siblings, 1 reply; 2+ messages in thread
From: Tim Kourt @ 2019-10-29 22:33 UTC (permalink / raw)
To: iwd
[-- Attachment #1: Type: text/plain, Size: 995 bytes --]
---
client/display.c | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/client/display.c b/client/display.c
index cd17ad84..74b50e2e 100644
--- a/client/display.c
+++ b/client/display.c
@@ -397,7 +397,7 @@ static void display_completion_matches(char **matches, int num_matches,
static struct masked_input {
bool use_mask;
- char passphrase[MAX_PASSPHRASE_LEN];
+ char passphrase[MAX_PASSPHRASE_LEN + 1];
uint8_t point;
uint8_t end;
} masked_input;
@@ -436,6 +436,7 @@ static void mask_input(void)
masked_input.passphrase + masked_input.point
+ 1,
rl_end - rl_point);
+
memset(masked_input.passphrase + rl_end, 0,
masked_input.end - rl_end);
}
@@ -453,7 +454,7 @@ done:
static void reset_masked_input(void)
{
- memset(masked_input.passphrase, 0, MAX_PASSPHRASE_LEN);
+ memset(masked_input.passphrase, 0, MAX_PASSPHRASE_LEN + 1);
masked_input.point = 0;
masked_input.end = 0;
}
--
2.13.6
^ permalink raw reply related [flat|nested] 2+ messages in thread
* [PATCH 2/2] client: Update rl_point to last known position
2019-10-29 22:33 [PATCH 1/2] client: Increase passphrase buffer to accommodate for nil byte Tim Kourt
@ 2019-10-29 22:33 ` Tim Kourt
0 siblings, 0 replies; 2+ messages in thread
From: Tim Kourt @ 2019-10-29 22:33 UTC (permalink / raw)
To: iwd
[-- Attachment #1: Type: text/plain, Size: 632 bytes --]
Keep cursor's position consistent when passphrase is reaching
its maximum by adding characters in the middle of the string
This isn't practical behavior.
---
client/display.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/client/display.c b/client/display.c
index 74b50e2e..fc280d31 100644
--- a/client/display.c
+++ b/client/display.c
@@ -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;
}
--
2.13.6
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2019-10-29 22:33 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-10-29 22:33 [PATCH 1/2] client: Increase passphrase buffer to accommodate for nil byte Tim Kourt
2019-10-29 22:33 ` [PATCH 2/2] client: Update rl_point to last known position Tim Kourt
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.