summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--NEWS4
-rw-r--r--configure.ac2
-rw-r--r--m4/hooks.m44
3 files changed, 5 insertions, 5 deletions
diff --git a/NEWS b/NEWS
index 5b0f5ea7c0..62f4e30c6b 100644
--- a/NEWS
+++ b/NEWS
@@ -7,8 +7,8 @@ See the end for copying conditions.
** libgnutls: Fixes in parsing of priority strings. Patch by Stefan Buehler.
-** libgnutls: %COMPAT will allow large packets from TLS-incompliant servers
-(this behavior was the default and was accidentally undone in 3.2.2)
+** libgnutls: Solve issue with received TLS packets that exceed 2^14.
+(this fixes a bug that was accidentally introduced in 3.2.2)
** API and ABI modifications:
gnutls_priority_kx_list: Added
diff --git a/configure.ac b/configure.ac
index 0bba9858ff..f38c406923 100644
--- a/configure.ac
+++ b/configure.ac
@@ -21,7 +21,7 @@ dnl Process this file with autoconf to produce a configure script.
# USA
AC_PREREQ(2.61)
-AC_INIT([GnuTLS], [3.2.2], [bug-gnutls@gnu.org])
+AC_INIT([GnuTLS], [3.2.3], [bug-gnutls@gnu.org])
AC_CONFIG_AUX_DIR([build-aux])
AC_CONFIG_MACRO_DIR([m4])
AC_CANONICAL_HOST
diff --git a/m4/hooks.m4 b/m4/hooks.m4
index 05280d34bd..9a0dd74998 100644
--- a/m4/hooks.m4
+++ b/m4/hooks.m4
@@ -39,9 +39,9 @@ AC_DEFUN([LIBGNUTLS_HOOKS],
# Interfaces changed/added/removed: CURRENT++ REVISION=0
# Interfaces added: AGE++
# Interfaces removed: AGE=0
- AC_SUBST(LT_CURRENT, 51)
+ AC_SUBST(LT_CURRENT, 52)
AC_SUBST(LT_REVISION, 0)
- AC_SUBST(LT_AGE, 23)
+ AC_SUBST(LT_AGE, 24)
AC_SUBST(LT_SSL_CURRENT, 27)
AC_SUBST(LT_SSL_REVISION, 2)