diff options
| author | Jeremy Brubaker <jbru362@gmail.com> | 2022-06-10 09:50:09 -0400 |
|---|---|---|
| committer | Jeremy Brubaker <jbru362@gmail.com> | 2022-06-10 09:50:09 -0400 |
| commit | adc0321b11107c9770ccc7a522ffca4b65b1729a (patch) | |
| tree | edbb3be222d3fdfcb3a280811fa2c1e546f8622d | |
| parent | 27247aceda7754a8803bbc107fa9a5a08be05c02 (diff) | |
| download | anypinentry-adc0321b11107c9770ccc7a522ffca4b65b1729a.tar.gz anypinentry-adc0321b11107c9770ccc7a522ffca4b65b1729a.zip | |
Reset 'REPEAT' after completing 'GETPIN'
Calling 'SETREPEAT' applies only to the next call of 'GETPIN'. Once
a PIN is successfully confiremd, the next call to 'GETPIN' is *not*
confirmed by default
| -rwxr-xr-x | anypinentry | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/anypinentry b/anypinentry index e17bab0..0742281 100755 --- a/anypinentry +++ b/anypinentry @@ -91,6 +91,7 @@ password_prompt() { else cancelled_error; fi; + repeat= } # :: OK | ERR |
