diff options
author | Werner Koch <[email protected]> | 2018-07-05 18:55:32 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2018-07-05 18:55:32 +0000 |
commit | f7526c7bc754acf68bde0b79c785e875a9365d60 (patch) | |
tree | 02ee25b364468dab6ee3a69410b83a2ceda3a7d0 /g10/pkclist.c | |
parent | doc: Typo fix in a comment. (diff) | |
download | gnupg-f7526c7bc754acf68bde0b79c785e875a9365d60.tar.gz gnupg-f7526c7bc754acf68bde0b79c785e875a9365d60.zip |
gpg: Prepare for signatures with ISSUER_FPR but without ISSUER.
* g10/getkey.c (get_pubkey_for_sig): New.
(get_pubkeyblock_for_sig): New.
* g10/mainproc.c (issuer_fpr_raw): Give global scope.
(check_sig_and_print): Use get_pubkeyblock_for_sig.
* g10/pkclist.c (check_signatures_trust): Use get_pubkey_for_sig.
* g10/sig-check.c (check_signature2): Ditto.
(check_signature_over_key_or_uid): Ditto.
--
GnuPG-bug-id: 4046
The whole getkey stuff is still a mess with way to much duplication
and missing caching of already fetched data.
Signed-off-by: Werner Koch <[email protected]>
Diffstat (limited to 'g10/pkclist.c')
-rw-r--r-- | g10/pkclist.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/g10/pkclist.c b/g10/pkclist.c index 2322f7807..e7484432a 100644 --- a/g10/pkclist.c +++ b/g10/pkclist.c @@ -548,7 +548,7 @@ check_signatures_trust (ctrl_t ctrl, PKT_signature *sig) unsigned int trustlevel = TRUST_UNKNOWN; int rc=0; - rc = get_pubkey (ctrl, pk, sig->keyid ); + rc = get_pubkey_for_sig (ctrl, pk, sig); if (rc) { /* this should not happen */ log_error("Ooops; the key vanished - can't check the trust\n"); |