mirror of
git://git.gnupg.org/gnupg.git
synced 2025-07-02 22:46:30 +02:00
gpg: Rename the struct card_key_info_s.
* g10/call-agent.h (struct card_key_info_s): Rename to ... (struct keypair_info_s): this. (keypair_info_t): New. Use this everywhere instead of card_key_info_s. * g10/call-agent.c (agent_scd_free_keyinfo): Rename to .. (free_keypair_info): this. Change all callers. -- The struct is also useful to store the data from KEYPAIRINFO status lines. Thus renaming it makes sense. A future patch will extend the struct. Signed-off-by: Werner Koch <wk@gnupg.org>
This commit is contained in:
parent
125c959677
commit
8c63430d1a
3 changed files with 22 additions and 17 deletions
|
@ -330,8 +330,8 @@ enum_secret_keys (ctrl_t ctrl, void **context, PKT_public_key *sk)
|
|||
int eof;
|
||||
int state;
|
||||
strlist_t sl;
|
||||
struct card_key_info_s *card_keyinfo;
|
||||
struct card_key_info_s *card_keyinfo_list;
|
||||
keypair_info_t card_keyinfo;
|
||||
keypair_info_t card_keyinfo_list;
|
||||
char fpr2[2 * MAX_FINGERPRINT_LEN + 2 ];
|
||||
kbnode_t keyblock;
|
||||
kbnode_t node;
|
||||
|
@ -359,7 +359,7 @@ enum_secret_keys (ctrl_t ctrl, void **context, PKT_public_key *sk)
|
|||
if (!sk)
|
||||
{
|
||||
/* Free the context. */
|
||||
agent_scd_free_keyinfo (c->card_keyinfo_list);
|
||||
free_keypair_info (c->card_keyinfo_list);
|
||||
release_sk_list (c->results);
|
||||
release_kbnode (c->keyblock);
|
||||
getkey_end (ctrl, c->ctx);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue