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_2_11_6-247-ge3a820f


From: Ludovic Courtès
Subject: [SCM] GNU gnutls branch, master, updated. gnutls_2_11_6-247-ge3a820f
Date: Sun, 27 Feb 2011 16:46:01 +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=e3a820fcc10728fa70b3f7cb1cdb1b7add8678c4

The branch, master has been updated
       via  e3a820fcc10728fa70b3f7cb1cdb1b7add8678c4 (commit)
      from  8ed0bf779a35bccde60fa8d8006d6e12a3a4ecd6 (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 e3a820fcc10728fa70b3f7cb1cdb1b7add8678c4
Author: Ludovic Courtès <address@hidden>
Date:   Sun Feb 27 17:45:55 2011 +0100

    Fix LZO-enabled builds.

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

Summary of changes:
 libextra/gnutls_extra.c |   16 ++++++++++------
 1 files changed, 10 insertions(+), 6 deletions(-)

diff --git a/libextra/gnutls_extra.c b/libextra/gnutls_extra.c
index 4887053..1283763 100644
--- a/libextra/gnutls_extra.c
+++ b/libextra/gnutls_extra.c
@@ -132,12 +132,16 @@ gnutls_global_init_extra (void)
   /* Add the LZO compression method in the list of compression
    * methods.
    */
-  ret = _gnutls_add_lzo_comp ();
-  if (ret < 0)
-    {
-      gnutls_assert ();
-      return ret;
-    }
+  {
+    int ret;
+
+    ret = _gnutls_add_lzo_comp ();
+    if (ret < 0)
+      {
+       gnutls_assert ();
+       return ret;
+      }
+  }
 #endif
 
 


hooks/post-receive
-- 
GNU gnutls



reply via email to

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