aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNIIBE Yutaka <[email protected]>2018-10-11 04:37:24 +0000
committerNIIBE Yutaka <[email protected]>2018-12-18 01:15:42 +0000
commite6be36ee8854dc343a5e0f914991da3da360b513 (patch)
tree15e0f483c211cfef9f3edefecdb9b0f161207b2d
parentPost release updates (diff)
downloadgnupg-e6be36ee8854dc343a5e0f914991da3da360b513.tar.gz
gnupg-e6be36ee8854dc343a5e0f914991da3da360b513.zip
agent: Support --ack option for POPUPPINPADPROMPT.
* agent/divert-scd.c (getpin_cb): Support --ack option. -- Cherry-picked master commit of: 827529339a4854886dbb5625238e7e01013efdcd We are now introducing "acknowledge button" feature to scdaemon, so that we can support OpenPGPcard User Interaction Flag. We will (re)use the mechanism of POPUPPINPADPROMPT for this. Perhaps, we will change the name of POPUPPINPADPROMPT, since it will be no longer for PINPAD only. Signed-off-by: NIIBE Yutaka <[email protected]>
-rw-r--r--agent/divert-scd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/agent/divert-scd.c b/agent/divert-scd.c
index 88b35cd21..e51aa54e5 100644
--- a/agent/divert-scd.c
+++ b/agent/divert-scd.c
@@ -276,7 +276,7 @@ getpin_cb (void *opaque, const char *desc_text, const char *info,
}
else if (maxbuf == 1) /* Open the pinentry. */
{
- if (info)
+ if (info && strcmp (info, "--ack") != 0)
{
char *desc, *desc2;