1
0
Fork 0
mirror of git://git.gnupg.org/gnupg.git synced 2025-07-02 22:46:30 +02:00

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

(print_and_check_one_sig): New "show-sig-expire" list-option to show
signature expiration dates (if any).
This commit is contained in:
David Shaw 2003-08-03 02:37:48 +00:00
parent 7921516e85
commit 752e3459ab
5 changed files with 16 additions and 2 deletions

View file

@ -133,7 +133,7 @@ print_and_check_one_sig( KBNODE keyblock, KBNODE node,
break;
}
if( sigrc != '?' || print_without_key ) {
tty_printf("%s%c%c %c%c%c%c%c%c %08lX %s ",
tty_printf("%s%c%c %c%c%c%c%c%c %08lX %s",
is_rev? "rev":"sig",sigrc,
(sig->sig_class-0x10>0 &&
sig->sig_class-0x10<4)?'0'+sig->sig_class-0x10:' ',
@ -145,6 +145,9 @@ print_and_check_one_sig( KBNODE keyblock, KBNODE node,
(sig->trust_depth>9)?'T':
(sig->trust_depth>0)?'0'+sig->trust_depth:' ',
(ulong)sig->keyid[1], datestr_from_sig(sig));
if(opt.list_options&LIST_SHOW_SIG_EXPIRE)
tty_printf(" %s",expirestr_from_sig(sig));
tty_printf(" ");
if( sigrc == '%' )
tty_printf("[%s] ", g10_errstr(rc) );
else if( sigrc == '?' )