summaryrefslogtreecommitdiff
path: root/security/gnupg/patches
diff options
context:
space:
mode:
authorwiz <wiz>2006-12-06 23:00:46 +0000
committerwiz <wiz>2006-12-06 23:00:46 +0000
commitd94619d51f46f320481fb2c050b68d3cec7f7cfd (patch)
treeea166b36607bc6cbb49d011bcac7536dd0076518 /security/gnupg/patches
parent5844a272b0179e35e7a9b48ea88bfbd3affbca42 (diff)
downloadpkgsrc-d94619d51f46f320481fb2c050b68d3cec7f7cfd.tar.gz
Update to 1.4.6:
Noteworthy changes in version 1.4.6 (2006-12-06) ------------------------------------------------ * Fixed a serious and exploitable bug in processing encrypted packages. [CVE-2006-6235]. * Fixed a buffer overflow in gpg. [bug#728, CVE-2006-6169] (already fixed in pkgsrc) * Fixed a bug while decrypting certain compressed and encrypted messages. [bug#537] * Added --s2k-count to set the number of times passphrase mangling is repeated. The default is 65536 times. * Added --passphrase-repeat to set the number of times GPG will prompt for a new passphrase to be repeated. This is useful to help memorize a new passphrase. The default is 1 repetition. * Added a GPL license exception to the keyserver helper programs gpgkeys_ldap, gpgkeys_curl, and gpgkeys_hkp, to clarify any potential questions about the ability to distribute binaries that link to the OpenSSL library. GnuPG does not link directly to OpenSSL, but libcurl (used for HKP, HTTP, and FTP) and OpenLDAP (used for LDAP) may. Note that this license exception is considered a bug fix and is intended to forgive any violations pertaining to this issue, including those that may have occurred in the past. * Man pages are now build from the same source as those of GnuPG-2.
Diffstat (limited to 'security/gnupg/patches')
-rw-r--r--security/gnupg/patches/patch-al15
1 files changed, 0 insertions, 15 deletions
diff --git a/security/gnupg/patches/patch-al b/security/gnupg/patches/patch-al
deleted file mode 100644
index 3b08605939c..00000000000
--- a/security/gnupg/patches/patch-al
+++ /dev/null
@@ -1,15 +0,0 @@
-$NetBSD: patch-al,v 1.1 2006/11/28 05:39:42 taca Exp $
-
-# http://lists.gnupg.org/pipermail/gnupg-announce/2006q4/000241.html
-
---- ./g10/openfile.c.orig 2006-09-14 08:18:39.000000000 -0600
-+++ ./g10/openfile.c
-@@ -145,7 +145,7 @@ ask_outfile_name( const char *name, size
-
- s = _("Enter new filename");
-
-- n = strlen(s) + namelen + 10;
-+ n = strlen(s) + (defname?strlen (defname):0) + 10;
- defname = name && namelen? make_printable_string( name, namelen, 0): NULL;
- prompt = xmalloc(n);
- if( defname )