1
0
Fork 0
mirror of git://git.gnupg.org/gnupg.git synced 2025-07-02 22:46:30 +02:00

doc: Minor code comment fixes.

--
This commit is contained in:
Werner Koch 2020-06-08 15:22:28 +02:00
parent e2e5736842
commit c1c607a51c
No known key found for this signature in database
GPG key ID: E3FDFF218E45B72B
6 changed files with 10 additions and 6 deletions

View file

@ -324,7 +324,7 @@ get_pubkey_for_sig (ctrl_t ctrl, PKT_public_key *pk, PKT_signature *sig,
return 0;
}
/* First try the new ISSUER_FPR info. */
/* First try the ISSUER_FPR info. */
fpr = issuer_fpr_raw (sig, &fprlen);
if (fpr && !get_pubkey_byfprint (ctrl, pk, NULL, fpr, fprlen))
return 0;
@ -533,7 +533,7 @@ get_pubkeyblock_for_sig (ctrl_t ctrl, PKT_signature *sig)
size_t fprlen;
kbnode_t keyblock;
/* First try the new ISSUER_FPR info. */
/* First try the ISSUER_FPR info. */
fpr = issuer_fpr_raw (sig, &fprlen);
if (fpr && !get_pubkey_byfprint (ctrl, NULL, &keyblock, fpr, fprlen))
return keyblock;