1
0
mirror of git://git.gnupg.org/gnupg.git synced 2024-07-01 02:42:44 +02:00

* keyedit.c (show_key_with_all_names_colon): Renamed the record

for revocation keys to "rvk".
This commit is contained in:
Werner Koch 2002-05-29 11:27:08 +00:00
parent 0a1b46b5db
commit cc6de431ff
3 changed files with 8 additions and 2 deletions

View File

@ -30,10 +30,11 @@ record.
ssb = secret subkey (secondary key)
uid = user id (only field 10 is used).
sig = signature
rev = revocation signature
fpr = fingerprint: (fingerprint is in field 10)
pkd = public key data (special field format, see below)
grp = reserved for gpgsm
rev = revocation key
rvk = revocation key
2. Field: A letter describing the calculated trust. This is a single
letter, but be prepared that additional information may follow

View File

@ -1,3 +1,8 @@
2002-05-29 Werner Koch <wk@gnupg.org>
* keyedit.c (show_key_with_all_names_colon): Renamed the record
for revocation keys to "rvk".
2002-05-27 Werner Koch <wk@gnupg.org>
* keyedit.c (show_key_with_all_names_colon): New.

View File

@ -1615,7 +1615,7 @@ show_key_with_all_names_colon (KBNODE keyblock)
{
byte *p;
printf ("rev:::%d::::::", pk->revkey[i].algid);
printf ("rvk:::%d::::::", pk->revkey[i].algid);
p = pk->revkey[i].fpr;
for (j=0; j < 20; j++, p++ )
printf ("%02X", *p);