mirror of
git://git.gnupg.org/gnupg.git
synced 2025-07-03 22:56:33 +02:00
Changed lsign behaviour, allow future subkeys, don't list revoked keys
This commit is contained in:
parent
32cf5dfb99
commit
dce4566802
14 changed files with 82 additions and 38 deletions
|
@ -243,6 +243,12 @@ list_keyblock_print ( KBNODE keyblock, int secret )
|
|||
|
||||
for( kbctx=NULL; (node=walk_kbnode( keyblock, &kbctx, 0)) ; ) {
|
||||
if( node->pkt->pkttype == PKT_USER_ID && !opt.fast_list_mode ) {
|
||||
/* don't list revoked UIDS unless we are in verbose mode and
|
||||
* signature listing has not been requested */
|
||||
if ( !opt.verbose && !opt.list_sigs
|
||||
&& node->pkt->pkt.user_id->is_revoked )
|
||||
continue;
|
||||
|
||||
if( any )
|
||||
printf("uid%*s", 28, "");
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue