gnutls-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[SCM] GNU gnutls branch, master, updated. gnutls_3_0_15-34-g380c55d


From: Nikos Mavrogiannopoulos
Subject: [SCM] GNU gnutls branch, master, updated. gnutls_3_0_15-34-g380c55d
Date: Wed, 14 Mar 2012 21:51:42 +0000

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU gnutls".

http://git.savannah.gnu.org/cgit/gnutls.git/commit/?id=380c55d13b6c1e25cc7e4a278686021cbbd8a14c

The branch, master has been updated
       via  380c55d13b6c1e25cc7e4a278686021cbbd8a14c (commit)
       via  0afc9569e44a011494abcfe8e653fb888cfce386 (commit)
      from  19b2ac58a1450f4a83ef1e467aec7bf82affebc5 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 380c55d13b6c1e25cc7e4a278686021cbbd8a14c
Author: Nikos Mavrogiannopoulos <address@hidden>
Date:   Wed Mar 14 22:49:03 2012 +0100

    bumped version.

commit 0afc9569e44a011494abcfe8e653fb888cfce386
Author: Nikos Mavrogiannopoulos <address@hidden>
Date:   Wed Mar 14 22:44:39 2012 +0100

    corrected call to gnutls_error_is_fatal().

-----------------------------------------------------------------------

Summary of changes:
 configure.ac        |    2 +-
 lib/gnutls_record.c |    2 +-
 m4/hooks.m4         |    2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/configure.ac b/configure.ac
index 619475c..6fdf1d4 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.0.15], address@hidden)
+AC_INIT([GnuTLS], [3.0.16], address@hidden)
 AC_CONFIG_AUX_DIR([build-aux])
 AC_CONFIG_MACRO_DIR([m4])
 
diff --git a/lib/gnutls_record.c b/lib/gnutls_record.c
index 5a85f2e..28d0ee8 100644
--- a/lib/gnutls_record.c
+++ b/lib/gnutls_record.c
@@ -865,7 +865,7 @@ gnutls_datum_t raw; /* raw headers */
   if ((ret =
        _gnutls_io_read_buffered (session, record->header_size, -1)) != 
record->header_size)
     {
-      if (gnutls_error_is_fatal (ret) == 0)
+      if (ret < 0 && gnutls_error_is_fatal (ret) == 0)
         return ret;
       
       if (ret >= 0)
diff --git a/m4/hooks.m4 b/m4/hooks.m4
index 9188553..cc4d67d 100644
--- a/m4/hooks.m4
+++ b/m4/hooks.m4
@@ -44,7 +44,7 @@ AC_DEFUN([LIBGNUTLS_HOOKS],
   AC_SUBST(LT_AGE, 6)
 
   AC_SUBST(LT_SSL_CURRENT, 27)
-  AC_SUBST(LT_SSL_REVISION, 1)
+  AC_SUBST(LT_SSL_REVISION, 2)
   AC_SUBST(LT_SSL_AGE, 0)
 
   AC_SUBST(CXX_LT_CURRENT, 28)


hooks/post-receive
-- 
GNU gnutls



reply via email to

[Prev in Thread] Current Thread [Next in Thread]