mirror of
git://git.gnupg.org/gnupg.git
synced 2025-02-01 16:33:02 +01:00
* keyedit.c (print_and_check_one_sig): Use list-option show-long-keyid in
--edit-key "check" function.
This commit is contained in:
parent
934b1653f8
commit
b9c223f86a
@ -1,3 +1,8 @@
|
|||||||
|
2003-08-29 David Shaw <dshaw@jabberwocky.com>
|
||||||
|
|
||||||
|
* keyedit.c (print_and_check_one_sig): Use list-option
|
||||||
|
show-long-keyid in --edit-key "check" function.
|
||||||
|
|
||||||
2003-08-28 David Shaw <dshaw@jabberwocky.com>
|
2003-08-28 David Shaw <dshaw@jabberwocky.com>
|
||||||
|
|
||||||
* passphrase.c (agent_send_all_options): Make use of $GPG_TTY.
|
* passphrase.c (agent_send_all_options): Make use of $GPG_TTY.
|
||||||
|
@ -133,7 +133,7 @@ print_and_check_one_sig( KBNODE keyblock, KBNODE node,
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
if( sigrc != '?' || print_without_key ) {
|
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 ",
|
||||||
is_rev? "rev":"sig",sigrc,
|
is_rev? "rev":"sig",sigrc,
|
||||||
(sig->sig_class-0x10>0 &&
|
(sig->sig_class-0x10>0 &&
|
||||||
sig->sig_class-0x10<4)?'0'+sig->sig_class-0x10:' ',
|
sig->sig_class-0x10<4)?'0'+sig->sig_class-0x10:' ',
|
||||||
@ -143,8 +143,12 @@ print_and_check_one_sig( KBNODE keyblock, KBNODE node,
|
|||||||
sig->flags.notation?'N':' ',
|
sig->flags.notation?'N':' ',
|
||||||
sig->flags.expired?'X':' ',
|
sig->flags.expired?'X':' ',
|
||||||
(sig->trust_depth>9)?'T':
|
(sig->trust_depth>9)?'T':
|
||||||
(sig->trust_depth>0)?'0'+sig->trust_depth:' ',
|
(sig->trust_depth>0)?'0'+sig->trust_depth:' ');
|
||||||
(ulong)sig->keyid[1], datestr_from_sig(sig));
|
if(opt.list_options&LIST_SHOW_LONG_KEYID)
|
||||||
|
tty_printf("%08lX%08lX",(ulong)sig->keyid[0],(ulong)sig->keyid[1]);
|
||||||
|
else
|
||||||
|
tty_printf("%08lX",(ulong)sig->keyid[1]);
|
||||||
|
tty_printf(" %s", datestr_from_sig(sig));
|
||||||
if(opt.list_options&LIST_SHOW_SIG_EXPIRE)
|
if(opt.list_options&LIST_SHOW_SIG_EXPIRE)
|
||||||
tty_printf(" %s",expirestr_from_sig(sig));
|
tty_printf(" %s",expirestr_from_sig(sig));
|
||||||
tty_printf(" ");
|
tty_printf(" ");
|
||||||
|
Loading…
x
Reference in New Issue
Block a user