diff options
author | Ludovic Courtès <ludo@gnu.org> | 2014-11-12 22:08:17 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2014-11-12 23:56:28 +0100 |
commit | 5dee9acf5318bce197f5a743db72010cc70db04a (patch) | |
tree | 1995b5828305ae716d16cfd65cc85c20b8ea293b /gnu/packages/patches | |
parent | b173d0e443fae6c0d187981c93607429c951e882 (diff) | |
download | guix-5dee9acf5318bce197f5a743db72010cc70db04a.tar.gz |
gnu: gnutls: Update to 3.2.20--this fixes CVE-2014-8564.
* gnu/packages/patches/gnutls-server-name-fix.patch: Remove. * gnu-system.am (dist_patch_DATA): Adjust accordingly. * gnu/packages/gnutls.scm (gnutls): Update to 3.2.20. Remove 'patches' field.
Diffstat (limited to 'gnu/packages/patches')
-rw-r--r-- | gnu/packages/patches/gnutls-server-name-fix.patch | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/gnu/packages/patches/gnutls-server-name-fix.patch b/gnu/packages/patches/gnutls-server-name-fix.patch deleted file mode 100644 index 01f0b761e0..0000000000 --- a/gnu/packages/patches/gnutls-server-name-fix.patch +++ /dev/null @@ -1,17 +0,0 @@ -Fix a typo introduced in the first series implementing -'set-session-server-name!' whereby the trailing nul character would -be passed on the wire, thereby breaking connections. - -diff --git a/guile/src/core.c b/guile/src/core.c -index 82fd573..2778205 100644 ---- a/guile/src/core.c -+++ b/guile/src/core.c -@@ -719,7 +719,7 @@ SCM_DEFINE (scm_gnutls_set_session_server_name_x, "set-session-server-name!", - c_name = scm_to_locale_string (name); - - err = gnutls_server_name_set (c_session, c_type, c_name, -- strlen (c_name) + 1); -+ strlen (c_name)); - free (c_name); - - if (EXPECT_FALSE (err != GNUTLS_E_SUCCESS)) |