diff options
author | Werner Koch <[email protected]> | 2024-06-04 13:25:51 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2024-06-04 13:27:41 +0000 |
commit | 04ce6765f4a86e865a456a6c982b8e4610e1c1ec (patch) | |
tree | 8cf05cefae3fb4f7bb1744ab1846b8df3b8255d6 /g10/pkclist.c | |
parent | common:w32: Fix INEXTRA handling. (diff) | |
download | gnupg-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/pkclist.c')
-rw-r--r-- | g10/pkclist.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/g10/pkclist.c b/g10/pkclist.c index afc8f56bc..09689e15f 100644 --- a/g10/pkclist.c +++ b/g10/pkclist.c @@ -129,8 +129,8 @@ show_revocation_reason (ctrl_t ctrl, PKT_public_key *pk, int mode) int rc; /* get the keyblock */ - fingerprint_from_pk( pk, fingerprint, &fingerlen ); - rc = get_pubkey_byfprint (ctrl, NULL, &keyblock, fingerprint, fingerlen); + fingerprint_from_pk (pk, fingerprint, &fingerlen); + rc = get_pubkey_byfpr (ctrl, NULL, &keyblock, fingerprint, fingerlen); if( rc ) { /* that should never happen */ log_debug( "failed to get the keyblock\n"); return; |