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

See ChangeLog: Wed Jul 12 13:32:06 CEST 2000 Werner Koch

This commit is contained in:
Werner Koch 2000-07-12 11:35:30 +00:00
parent 6e4d721c93
commit 9b9fb4cc50
27 changed files with 4500 additions and 611 deletions

View file

@ -1,3 +1,7 @@
Wed Jul 12 13:32:06 CEST 2000 Werner Koch <wk@>
* helptext.c, pkclist.c: s/superseeded/superseded/
Mon Jul 10 16:08:57 CEST 2000 Werner Koch <wk@>
* parse-packet.c (enum_sig_subpkt): Fixed testing on crtitical bit in case

View file

@ -231,7 +231,7 @@ static struct helptexts { const char *key; const char *help; } helptexts[] = {
" \"Key has been compromised\"\n"
" Use this if you have a reason to believe that unauthorized persons\n"
" got access to your secret key.\n"
" \"Key is superseeded\"\n"
" \"Key is superseded\"\n"
" Use this if you have replaced this key with a newer one.\n"
" \"Key is no longer used\"\n"
" Use this if you have retired this key.\n"

View file

@ -115,7 +115,7 @@ do_show_revocation_reason( PKT_signature *sig )
if( *p == 0 )
text = _("No reason specified");
else if( *p == 0x01 )
text = _("Key is superseeded");
text = _("Key is superseded");
else if( *p == 0x02 )
text = _("Key has been compromised");
else if( *p == 0x03 )