From dd491d290ad973fd1b73ab83ad0139449008c62a Mon Sep 17 00:00:00 2001 From: Marcus Brinkmann Date: Wed, 20 Apr 2011 22:41:22 +0200 Subject: [PATCH] 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!). --- g10/ChangeLog | 5 +++++ g10/keylist.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) 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);