diff options
author | NIIBE Yutaka <[email protected]> | 2020-01-17 06:11:02 +0000 |
---|---|---|
committer | NIIBE Yutaka <[email protected]> | 2020-01-17 07:09:01 +0000 |
commit | 853d5b7677ea01f65c9bc5160cd8509b62f486f7 (patch) | |
tree | 848bb0adc423a9abbd67d716a641eb6b7849815f /g10/call-agent.h | |
parent | card: Allow switching of cards and applications. (diff) | |
download | gnupg-853d5b7677ea01f65c9bc5160cd8509b62f486f7.tar.gz gnupg-853d5b7677ea01f65c9bc5160cd8509b62f486f7.zip |
gpg: Prepare enhancement of agent_probe_secret_key.
* g10/call-agent.c (agent_probe_secret_key): Change semantics of
return value.
* g10/call-agent.h (agent_probe_secret_key): Change comment.
* g10/delkey.c (do_delete_key): Follow the change.
* g10/getkey.c (get_seckey, parse_def_secret_key): Likewise.
(finish_lookup, have_secret_key_with_kid): Likewise.
* g10/gpgv.c (agent_probe_secret_key): Likewise.
* g10/keyedit.c (keyedit_menu, quick_find_keyblock): Likewise.
(show_key_with_all_names_colon): Likewise.
* g10/revoke.c (gen_desig_revoke, gen_revoke): Likewise
* g10/test-stubs.c (agent_probe_secret_key): Likewise.
--
GnuPG-bug-id: 3416
Signed-off-by: NIIBE Yutaka <[email protected]>
Diffstat (limited to 'g10/call-agent.h')
-rw-r--r-- | g10/call-agent.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/g10/call-agent.h b/g10/call-agent.h index 0d333fd40..9d865b90f 100644 --- a/g10/call-agent.h +++ b/g10/call-agent.h @@ -164,8 +164,8 @@ gpg_error_t gpg_agent_get_confirmation (const char *desc); unsigned long agent_get_s2k_count (void); /* Check whether a secret key for public key PK is available. Returns - 0 if the secret key is available. */ -gpg_error_t agent_probe_secret_key (ctrl_t ctrl, PKT_public_key *pk); + 0 if not available, positive value if the secret key is available. */ +int agent_probe_secret_key (ctrl_t ctrl, PKT_public_key *pk); /* Ask the agent whether a secret key is availabale for any of the keys (primary or sub) in KEYBLOCK. Returns 0 if available. */ |