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_9_10-371-gbe59ade


From: Nikos Mavrogiannopoulos
Subject: [SCM] GNU gnutls branch, master, updated. gnutls_2_9_10-371-gbe59ade
Date: Thu, 23 Sep 2010 08:01:25 +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=be59ade6bcdf4d3ea5e30cf14a2d0e2196e4682d

The branch, master has been updated
       via  be59ade6bcdf4d3ea5e30cf14a2d0e2196e4682d (commit)
       via  9ed376f73d46550d3d6257b1df5926c231b42ca1 (commit)
      from  29e80af525774c861383a03010956151b2ba8d1c (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 be59ade6bcdf4d3ea5e30cf14a2d0e2196e4682d
Author: Nikos Mavrogiannopoulos <address@hidden>
Date:   Thu Sep 23 10:01:19 2010 +0200

    fflush stdout and stderr before the call to setbuf. This fixes issue in 
solaris where lines dissappeared from output. Reported and suggested fix by 
Knut Anders Hatlen.

commit 9ed376f73d46550d3d6257b1df5926c231b42ca1
Author: Nikos Mavrogiannopoulos <address@hidden>
Date:   Mon Sep 20 16:47:18 2010 +0200

    documented change

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

Summary of changes:
 NEWS      |    8 ++++++++
 src/cli.c |    3 +++
 2 files changed, 11 insertions(+), 0 deletions(-)

diff --git a/NEWS b/NEWS
index 565e87e..2618d86 100644
--- a/NEWS
+++ b/NEWS
@@ -3,6 +3,14 @@ Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005,
               2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
 See the end for copying conditions.
 
+* Version 2.11.2 (unreleased)
+
+** libgnutls: Corrected bug that caused importing DSA keys as RSA,
+introduced with the new nettle code.
+
+** API and ABI modifications:
+No changes since last version.
+
 * Version 2.11.1 (released 2010-09-14)
 
 ** libgnutls: Nettle is the default crypto back end. Use --with-libgcrypt
diff --git a/src/cli.c b/src/cli.c
index 34bdf78..5f5b22f 100644
--- a/src/cli.c
+++ b/src/cli.c
@@ -830,6 +830,9 @@ after_handshake:
   signal (SIGALRM, &starttls_alarm);
 #endif
 
+  fflush(stdout);
+  fflush(stderr);
+
   /* do not buffer */
 #if !(defined _WIN32 || defined __WIN32__)
   setbuf (stdin, NULL);


hooks/post-receive
-- 
GNU gnutls



reply via email to

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