See ChangeLog: Wed Mar 10 11:26:18 CET 1999 Werner Koch

This commit is contained in:
Werner Koch 1999-03-10 10:27:52 +00:00
parent 45ac2a622c
commit 42ff4d53cb
6 changed files with 299 additions and 295 deletions

6
BUGS
View File

@ -47,3 +47,9 @@ and after about half a day in the rsync snapshots.
--> I hope I've fixed this: Please, can someone check this.
I can't reproduce it on the alpha I have access to.
[ **] #12 1999-03-10
gpg --list-secret-keys --with-colon SEGVs
FIX: 1999-03-10
Next #13

1
TODO
View File

@ -19,6 +19,7 @@
* when decryptiong multiple key: print a warning only if no usable pubkey
encrypt package was found. Extension: display a list of all recipients.
* describe the Lim-Lee algorithms
Nice to have
------------

View File

@ -1 +1 @@
0.9.4
0.9.4a

View File

@ -1,3 +1,8 @@
Wed Mar 10 11:26:18 CET 1999 Werner Koch <wk@isil.d.shuttle.de>
* keylist.c (list_keyblock): Fixed segv in uid. Print 'u' as
validity of sks.
Mon Mar 8 20:47:17 CET 1999 Werner Koch <wk@isil.d.shuttle.de>
* getkey.c (classify_user_id): Add new mode 12 (#<lid>).

View File

@ -178,7 +178,7 @@ list_keyblock( KBNODE keyblock, int secret )
sk = node->pkt->pkt.secret_key;
keyid_from_sk( sk, keyid );
if( opt.with_colons )
printf("sec::%u:%d:%08lX%08lX:%s:%s:::",
printf("sec:u:%u:%d:%08lX%08lX:%s:%s:::",
nbits_from_sk( sk ),
sk->pubkey_algo,
(ulong)keyid[0],(ulong)keyid[1],
@ -225,10 +225,14 @@ list_keyblock( KBNODE keyblock, int secret )
if( opt.with_colons ) {
byte namehash[20];
rmd160_hash_buffer( namehash,
if( pk ) {
rmd160_hash_buffer( namehash,
node->pkt->pkt.user_id->name,
node->pkt->pkt.user_id->len );
trustletter = query_trust_info( pk, namehash );
trustletter = query_trust_info( pk, namehash );
}
else
trustletter = 'u';
printf("uid:%c::::::::", trustletter);
}
else

570
po/de.po

File diff suppressed because it is too large Load Diff