diff options
author | David Shaw <dshaw@jabberwocky.com> | 2004-07-16 16:30:55 +0200 |
---|---|---|
committer | David Shaw <dshaw@jabberwocky.com> | 2004-07-16 16:30:55 +0200 |
commit | 0aad41079edba170032445be6f14bedb0be98f0a (patch) | |
tree | f5bd764042fc30294c41d76c6e636fb7bdffbad2 /g10/keyedit.c | |
parent | * keyedit.c (sign_uids): Properly handle remaking a self-sig on revoked or (diff) | |
download | gnupg2-0aad41079edba170032445be6f14bedb0be98f0a.tar.xz gnupg2-0aad41079edba170032445be6f14bedb0be98f0a.zip |
* keylist.c (list_keyblock_print): Always use the new listing format where
uids are always on a line for themselves. Mark expired secret keys as
expired.
* options.h, g10.c (main): Rename list show-validity to show-uid-validity
as it only shows for uids.
* armor.c (armor_filter): Do not use padding to get us to 8 bytes of
header. Rather, use 2+4 as two different chunks. This avoids a fake
filename of "is".
Diffstat (limited to 'g10/keyedit.c')
-rw-r--r-- | g10/keyedit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/g10/keyedit.c b/g10/keyedit.c index 72688e22f..f5597560d 100644 --- a/g10/keyedit.c +++ b/g10/keyedit.c @@ -2176,7 +2176,7 @@ show_key_with_all_names( KBNODE keyblock, int only_marked, int with_revoker, tty_printf("[%8.8s] ",_("revoked")); else if(uid->is_expired) tty_printf("[%8.8s] ",_("expired")); - else if(opt.list_options&LIST_SHOW_VALIDITY && primary) + else if(opt.list_options&LIST_SHOW_UID_VALIDITY && primary) tty_printf("[%8.8s] ", trust_value_to_string(get_validity(primary,uid))); else if(indent) |