aboutsummaryrefslogtreecommitdiffstats
path: root/g10/card-util.c
diff options
context:
space:
mode:
authorWerner Koch <[email protected]>2024-06-04 13:25:51 +0000
committerWerner Koch <[email protected]>2024-06-04 13:27:41 +0000
commit04ce6765f4a86e865a456a6c982b8e4610e1c1ec (patch)
tree8cf05cefae3fb4f7bb1744ab1846b8df3b8255d6 /g10/card-util.c
parentcommon:w32: Fix INEXTRA handling. (diff)
downloadgnupg-04ce6765f4a86e865a456a6c982b8e4610e1c1ec.tar.gz
gnupg-04ce6765f4a86e865a456a6c982b8e4610e1c1ec.zip
gpg: Rename functions with an "fprint" part to "fpr"
-- The fprint is too uncommon in our code base and to similar to fprintf.
Diffstat (limited to 'g10/card-util.c')
-rw-r--r--g10/card-util.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/g10/card-util.c b/g10/card-util.c
index e8a5c1935..002b26e45 100644
--- a/g10/card-util.c
+++ b/g10/card-util.c
@@ -699,7 +699,7 @@ current_card_status (ctrl_t ctrl, estream_t fp,
/* If the fingerprint is all 0xff, the key has no associated
OpenPGP certificate. */
if ( thefpr && !fpr_is_ff (thefpr, thefprlen)
- && !get_pubkey_byfprint (ctrl, pk, &keyblock, thefpr, thefprlen))
+ && !get_pubkey_byfpr (ctrl, pk, &keyblock, thefpr, thefprlen))
{
print_key_info (ctrl, fp, 0, pk, 0);
print_card_key_info (fp, keyblock);
@@ -917,8 +917,8 @@ fetch_url (ctrl_t ctrl)
}
else if (info.fpr1len)
{
- rc = keyserver_import_fprint (ctrl, info.fpr1, info.fpr1len,
- opt.keyserver, 0);
+ rc = keyserver_import_fpr (ctrl, info.fpr1, info.fpr1len,
+ opt.keyserver, 0);
}
}