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/mainproc.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 '')
-rw-r--r-- | g10/mainproc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/g10/mainproc.c b/g10/mainproc.c index 91ababbb6..0fd32aead 100644 --- a/g10/mainproc.c +++ b/g10/mainproc.c @@ -2192,8 +2192,8 @@ check_sig_and_print (CTX c, kbnode_t node) free_public_key (pk); pk = NULL; glo_ctrl.in_auto_key_retrieve++; - res = keyserver_import_fprint (c->ctrl, p, n, opt.keyserver, - KEYSERVER_IMPORT_FLAG_QUICK); + res = keyserver_import_fpr (c->ctrl, p, n, opt.keyserver, + KEYSERVER_IMPORT_FLAG_QUICK); glo_ctrl.in_auto_key_retrieve--; if (!res) rc = do_check_sig (c, node, extrahash, extrahashlen, NULL, |