diff options
author | Marcus Brinkmann <[email protected]> | 2011-04-20 20:41:22 +0000 |
---|---|---|
committer | Marcus Brinkmann <[email protected]> | 2011-04-20 20:41:22 +0000 |
commit | dd491d290ad973fd1b73ab83ad0139449008c62a (patch) | |
tree | b0c56106b3239e4cd4f56c21f057869f1120dc61 | |
parent | Fix gpg-agent secure memory leak in OpenPGP private key import. (diff) | |
download | gnupg-dd491d290ad973fd1b73ab83ad0139449008c62a.tar.gz gnupg-dd491d290ad973fd1b73ab83ad0139449008c62a.zip |
2011-04-20 Marcus Brinkmann <[email protected]>
* keylist.c (list_keyblock_colon): Use get_ownertrust_info, not
get_ownertrust (which lead to binary zeroes in the output!).
Diffstat (limited to '')
-rw-r--r-- | g10/ChangeLog | 5 | ||||
-rw-r--r-- | g10/keylist.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/g10/ChangeLog b/g10/ChangeLog index ed958c515..a1c608f76 100644 --- a/g10/ChangeLog +++ b/g10/ChangeLog @@ -1,3 +1,8 @@ +2011-04-20 Marcus Brinkmann <[email protected]> + + * keylist.c (list_keyblock_colon): Use get_ownertrust_info, not + get_ownertrust (which lead to binary zeroes in the output!). + 2011-03-23 Werner Koch <[email protected]> * parse-packet.c (read_rest): Drop unsed PARTIAL arg. Rewrite to diff --git a/g10/keylist.c b/g10/keylist.c index 968aa9506..db7467d3d 100644 --- a/g10/keylist.c +++ b/g10/keylist.c @@ -1161,7 +1161,7 @@ list_keyblock_colon (KBNODE keyblock, int secret, int fpr) colon_datestr_from_pk (pk), colon_strtime (pk->expiredate)); if (!opt.fast_list_mode && !opt.no_expensive_trust_checks) - es_putc (get_ownertrust (pk), es_stdout); + es_putc (get_ownertrust_info (pk), es_stdout); es_putc (':', es_stdout); es_putc (':', es_stdout); |