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

About to release 1.0.6

This commit is contained in:
Werner Koch 2001-05-29 06:58:58 +00:00
parent e354b518d3
commit e3b897b52d
6 changed files with 20 additions and 4 deletions

View File

@ -1,3 +1,7 @@
2001-05-29 Werner Koch <wk@gnupg.org>
Released version 1.0.6.
2001-05-28 Werner Koch <wk@gnupg.org>
* configure.in (BUILD_INCLUDED_LIBINTL): Set to no for W32.

9
NEWS
View File

@ -1,10 +1,13 @@
Noteworthy changes in version ...
Noteworthy changes in version 1.0.6 (2001-05-29)
------------------------------------------------
* Security fix for a format string bug in the tty code.
* Fixed format string bugs in all po files. Removed Russian
translation due to too many bugs.
* Fixed format string bugs in all PO files.
* Removed Russian translation due to too many bugs. The FTP
server has an unofficial but better translation in the contrib
directory.
* Fixed expire time calculation and keyserver access.

1
THANKS
View File

@ -12,6 +12,7 @@ Ariel T Glenn ariel@columbia.edu
Bodo Moeller Bodo_Moeller@public.uni-hamburg.de
Brendan O'Dea bod@debian.org
Brenno de Winter brenno@dewinter.com
Brian M. Carlson karlsson@hal-pc.org
Brian Moore bem@cmc.net
Brian Warner warner@lothar.com
Bryan Fullerton bryanf@samurai.com

View File

@ -1 +1 @@
1.0.5a
1.0.6

View File

@ -1,3 +1,8 @@
2001-05-29 Werner Koch <wk@gnupg.org>
* keygen.c (generate_subkeypair): Print a warning if a subkey is
created on a v3 key. Suggested by Brian M. Carlson.
2001-05-27 Werner Koch <wk@gnupg.org>
* keyid.c (get_lsign_letter): New.

View File

@ -1755,6 +1755,9 @@ generate_subkeypair( KBNODE pub_keyblock, KBNODE sec_keyblock )
}
}
if (sk->version < 4)
log_info (_("NOTE: creating subkeys for v3 keys "
"is not OpenPGP compliant\n"));
/* unprotect to get the passphrase */
switch( is_secret_key_protected( sk ) ) {