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/trustdb.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/trustdb.c')
-rw-r--r-- | g10/trustdb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/g10/trustdb.c b/g10/trustdb.c index 88b94389f..12e480707 100644 --- a/g10/trustdb.c +++ b/g10/trustdb.c @@ -112,7 +112,7 @@ keyid_from_fpr20 (ctrl_t ctrl, const byte *fpr, u32 *keyid) int rc; memset (&pk, 0, sizeof pk); - rc = get_pubkey_byfprint (ctrl, &pk, NULL, fpr, fprlen); + rc = get_pubkey_byfpr (ctrl, &pk, NULL, fpr, fprlen); if (rc) { log_printhex (fpr, fprlen, |