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 + + * 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 * 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);