1
0
Fork 0
mirror of git://git.gnupg.org/gnupg.git synced 2025-07-03 22:56:33 +02:00

* options.h, g10.c (main), keylist.c (list_keyblock_print): Add

"show-unusable-subkeys" list-option to show revoked and/or expired
subkeys.
This commit is contained in:
David Shaw 2004-02-11 13:46:23 +00:00
parent 7198879ca8
commit aa5f1940ff
4 changed files with 23 additions and 4 deletions

View file

@ -1705,6 +1705,7 @@ main( int argc, char **argv )
g10_opt_verbose++;
opt.verbose++;
opt.list_options|=LIST_SHOW_UNUSABLE_UIDS;
opt.list_options|=LIST_SHOW_UNUSABLE_SUBKEYS;
break;
case oKOption: set_cmd( &cmd, aKMode ); break;
@ -2102,6 +2103,7 @@ main( int argc, char **argv )
{"show-validity",LIST_SHOW_VALIDITY},
{"show-long-keyids",LIST_SHOW_LONG_KEYIDS},
{"show-unusable-uids",LIST_SHOW_UNUSABLE_UIDS},
{"show-unusable-subkeys",LIST_SHOW_UNUSABLE_SUBKEYS},
{"show-keyring",LIST_SHOW_KEYRING},
{"show-sig-expire",LIST_SHOW_SIG_EXPIRE},
{NULL,0}