mirror of
git://git.gnupg.org/gnupg.git
synced 2025-01-09 12:54:23 +01:00
About to release 1.0.6
This commit is contained in:
parent
e354b518d3
commit
e3b897b52d
@ -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>
|
2001-05-28 Werner Koch <wk@gnupg.org>
|
||||||
|
|
||||||
* configure.in (BUILD_INCLUDED_LIBINTL): Set to no for W32.
|
* configure.in (BUILD_INCLUDED_LIBINTL): Set to no for W32.
|
||||||
|
9
NEWS
9
NEWS
@ -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.
|
* Security fix for a format string bug in the tty code.
|
||||||
|
|
||||||
* Fixed format string bugs in all po files. Removed Russian
|
* Fixed format string bugs in all PO files.
|
||||||
translation due to too many bugs.
|
|
||||||
|
* 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.
|
* Fixed expire time calculation and keyserver access.
|
||||||
|
|
||||||
|
1
THANKS
1
THANKS
@ -12,6 +12,7 @@ Ariel T Glenn ariel@columbia.edu
|
|||||||
Bodo Moeller Bodo_Moeller@public.uni-hamburg.de
|
Bodo Moeller Bodo_Moeller@public.uni-hamburg.de
|
||||||
Brendan O'Dea bod@debian.org
|
Brendan O'Dea bod@debian.org
|
||||||
Brenno de Winter brenno@dewinter.com
|
Brenno de Winter brenno@dewinter.com
|
||||||
|
Brian M. Carlson karlsson@hal-pc.org
|
||||||
Brian Moore bem@cmc.net
|
Brian Moore bem@cmc.net
|
||||||
Brian Warner warner@lothar.com
|
Brian Warner warner@lothar.com
|
||||||
Bryan Fullerton bryanf@samurai.com
|
Bryan Fullerton bryanf@samurai.com
|
||||||
|
@ -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>
|
2001-05-27 Werner Koch <wk@gnupg.org>
|
||||||
|
|
||||||
* keyid.c (get_lsign_letter): New.
|
* keyid.c (get_lsign_letter): New.
|
||||||
|
@ -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 */
|
/* unprotect to get the passphrase */
|
||||||
switch( is_secret_key_protected( sk ) ) {
|
switch( is_secret_key_protected( sk ) ) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user