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

* packet.h, getkey.c (merge_selfsigs_main, sig_to_revoke_info), keyid.c

(revokestr_from_pk), keyedit.c (show_key_with_all_names): Show who revoked
a key (either the same key or a designated revoker) and when.
This commit is contained in:
David Shaw 2004-12-30 03:26:57 +00:00
parent f539f3d2b2
commit b37facc593
5 changed files with 46 additions and 11 deletions

View file

@ -529,9 +529,9 @@ revokestr_from_pk( PKT_public_key *pk )
static char buffer[11+5];
time_t atime;
if(!pk->revokedate)
if(!pk->revoked.date)
return _("never ");
atime=pk->revokedate;
atime=pk->revoked.date;
return mk_datestr (buffer, atime);
}