diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | NEWS | 9 | ||||
-rw-r--r-- | THANKS | 1 | ||||
-rw-r--r-- | VERSION | 2 | ||||
-rw-r--r-- | g10/ChangeLog | 5 | ||||
-rw-r--r-- | g10/keygen.c | 3 |
6 files changed, 20 insertions, 4 deletions
@@ -1,3 +1,7 @@ +2001-05-29 Werner Koch <[email protected]> + + Released version 1.0.6. + 2001-05-28 Werner Koch <[email protected]> * configure.in (BUILD_INCLUDED_LIBINTL): Set to no for W32. @@ -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. @@ -12,6 +12,7 @@ Ariel T Glenn [email protected] Bodo Moeller [email protected] Brendan O'Dea [email protected] Brenno de Winter [email protected] +Brian M. Carlson [email protected] Brian Moore [email protected] Brian Warner [email protected] Bryan Fullerton [email protected] @@ -1 +1 @@ -1.0.5a +1.0.6 diff --git a/g10/ChangeLog b/g10/ChangeLog index 646fa1c51..2b56b82a2 100644 --- a/g10/ChangeLog +++ b/g10/ChangeLog @@ -1,3 +1,8 @@ +2001-05-29 Werner Koch <[email protected]> + + * 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 <[email protected]> * keyid.c (get_lsign_letter): New. diff --git a/g10/keygen.c b/g10/keygen.c index 00fbb301b..2639ac07f 100644 --- a/g10/keygen.c +++ b/g10/keygen.c @@ -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 ) ) { |