mirror of
git://git.gnupg.org/gnupg.git
synced 2024-12-31 11:41:32 +01:00
* keyedit.c (show_key_with_all_names): Ownertrust is only meaningful for
the PGP or classic trust models. Both validity and ownertrust are not meaningful for the always trust model.
This commit is contained in:
parent
90bd542151
commit
837df305c6
@ -1,3 +1,9 @@
|
||||
2003-10-13 David Shaw <dshaw@jabberwocky.com>
|
||||
|
||||
* keyedit.c (show_key_with_all_names): Ownertrust is only
|
||||
meaningful for the PGP or classic trust models. Both validity and
|
||||
ownertrust are not meaningful for the always trust model.
|
||||
|
||||
2003-10-11 Werner Koch <wk@gnupg.org>
|
||||
|
||||
* keygen.c: Always enable the gen_card_key prototype.
|
||||
|
@ -2079,12 +2079,18 @@ show_key_with_all_names( KBNODE keyblock, int only_marked, int with_revoker,
|
||||
|
||||
if( node->pkt->pkttype == PKT_PUBLIC_KEY )
|
||||
{
|
||||
tty_printf(" ");
|
||||
if(opt.list_options&LIST_SHOW_LONG_KEYID)
|
||||
tty_printf(" ");
|
||||
tty_printf(_("trust: %-13s"), otrust);
|
||||
tty_printf(_("validity: %s"), trust );
|
||||
tty_printf("\n");
|
||||
if(opt.trust_model!=TM_ALWAYS)
|
||||
{
|
||||
tty_printf(" ");
|
||||
if(opt.list_options&LIST_SHOW_LONG_KEYID)
|
||||
tty_printf(" ");
|
||||
/* Ownertrust is only meaningful for the PGP or
|
||||
classic trust models */
|
||||
if(opt.trust_model==TM_PGP || opt.trust_model==TM_CLASSIC)
|
||||
tty_printf(_("trust: %-13s"), otrust);
|
||||
tty_printf(_("validity: %s"), trust );
|
||||
tty_printf("\n");
|
||||
}
|
||||
if( node->pkt->pkttype == PKT_PUBLIC_KEY
|
||||
&& (get_ownertrust (pk)&TRUST_FLAG_DISABLED))
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user