mirror of
git://git.gnupg.org/gnupg.git
synced 2025-07-02 22:46:30 +02:00
g10: Avoid gratuitously loading a keyblock when it is already available
* g10/trust.c (get_validity): Add new, optional parameter KB. Only load the keyblock if KB is NULL. Update callers. (get_validity): Likewise. * g10/trustdb.c (tdb_get_validity_core): Likewise. -- Signed-off-by: Neal H. Walfield <neal@g10code.com> GnuPG-bug-id: 2812
This commit is contained in:
parent
bfeafe2d3f
commit
03a65a5323
11 changed files with 108 additions and 50 deletions
|
@ -1228,7 +1228,7 @@ list_keyblock_colon (ctrl_t ctrl, kbnode_t keyblock,
|
|||
trustletter_print = 0;
|
||||
else
|
||||
{
|
||||
trustletter = get_validity_info (ctrl, pk, NULL);
|
||||
trustletter = get_validity_info (ctrl, keyblock, pk, NULL);
|
||||
if (trustletter == 'u')
|
||||
ulti_hack = 1;
|
||||
trustletter_print = trustletter;
|
||||
|
@ -1309,7 +1309,7 @@ list_keyblock_colon (ctrl_t ctrl, kbnode_t keyblock,
|
|||
else if (ulti_hack)
|
||||
uid_validity = 'u';
|
||||
else
|
||||
uid_validity = get_validity_info (ctrl, pk, uid);
|
||||
uid_validity = get_validity_info (ctrl, keyblock, pk, uid);
|
||||
|
||||
es_fputs (uid->attrib_data? "uat:":"uid:", es_stdout);
|
||||
if (uid_validity)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue