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_18-46-g34af48e


From: Nikos Mavrogiannopoulos
Subject: [SCM] GNU gnutls branch, master, updated. gnutls_3_0_18-46-g34af48e
Date: Wed, 25 Apr 2012 08:22:48 +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=34af48e99a369b01f633e7c2e65274ec3280d66f

The branch, master has been updated
       via  34af48e99a369b01f633e7c2e65274ec3280d66f (commit)
       via  960c116cc1605333e454b2f6ca74fcb838ba8db4 (commit)
      from  bb9d96bae90cde2a5e5e18f52e1d7a7e419d2d76 (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 34af48e99a369b01f633e7c2e65274ec3280d66f
Author: Nikos Mavrogiannopoulos <address@hidden>
Date:   Wed Apr 25 10:19:16 2012 +0200

    corrected bug in scan_nz()

commit 960c116cc1605333e454b2f6ca74fcb838ba8db4
Author: Nikos Mavrogiannopoulos <address@hidden>
Date:   Tue Apr 24 18:56:58 2012 +0200

    removed old dependency

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

Summary of changes:
 README-alpha     |    1 -
 lib/gnutls_mpi.c |    2 +-
 2 files changed, 1 insertions(+), 2 deletions(-)

diff --git a/README-alpha b/README-alpha
index 5443ef0..259067d 100644
--- a/README-alpha
+++ b/README-alpha
@@ -14,7 +14,6 @@ We require several tools to check out and build the software, 
including:
 - Libtool <http://www.gnu.org/software/libtool/>
 - Gettext <http://www.gnu.org/software/gettext/>
 - Texinfo <http://www.gnu.org/software/texinfo/>
-- help2man <http://www.gnu.org/software/help2man/>
 - Tar <http://www.gnu.org/software/tar/>
 - Gzip <http://www.gnu.org/software/gzip/>
 - Texlive & epsf <http://www.tug.org/texlive/> (for PDF manual)
diff --git a/lib/gnutls_mpi.c b/lib/gnutls_mpi.c
index da6abba..688f399 100644
--- a/lib/gnutls_mpi.c
+++ b/lib/gnutls_mpi.c
@@ -152,7 +152,7 @@ _gnutls_mpi_scan_nz (bigint_t * ret_mpi, const void 
*buffer, size_t nbytes)
 
   /* MPIs with 0 bits are illegal
    */
-  if (_gnutls_mpi_get_nbits (*ret_mpi) == 0)
+  if (_gnutls_mpi_cmp_ui (*ret_mpi, 0) == 0)
     {
       _gnutls_mpi_release (ret_mpi);
       return GNUTLS_E_MPI_SCAN_FAILED;


hooks/post-receive
-- 
GNU gnutls



reply via email to

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