1
0
Fork 0
mirror of git://git.gnupg.org/gnupg.git synced 2025-07-02 22:46:30 +02:00

* command.c (cmd_get_passphrase): Remove the plus signs.

* query.c (start_pinentry): Send no-grab option to pinentry
* gpg-agent.c (main): Move variable grab as no_grab to agent.h.
This commit is contained in:
Werner Koch 2002-01-20 16:49:10 +00:00
parent eac306fc90
commit 6aae6603af
5 changed files with 35 additions and 9 deletions

View file

@ -95,12 +95,11 @@ start_pinentry (void)
log_debug ("connection to PIN entry established\n");
if (DBG_COMMAND)
{
log_debug ("waiting for debugger [hit RETURN when ready] .....\n");
getchar ();
log_debug ("... okay\n");
}
rc = assuan_transact (entry_ctx,
opt.no_grab? "OPTION no-grab":"OPTION grab",
NULL, NULL, NULL, NULL);
if (rc)
return map_assuan_err (rc);
return 0;
}