[git] GCRYPT - branch, master, updated. libgcrypt-1.6.0-39-gdad06e4

by Werner Koch cvs at cvs.gnupg.org
Mon Jan 20 11:13:56 CET 2014


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 "The GNU crypto library".

The branch, master has been updated
       via  dad06e4d1b835bac778b87090b1d3894b7535b14 (commit)
       via  192e77d123fdb04c459c998b9eb1731618a833fa (commit)
      from  94030e44aaff805d754e368507f16dd51a531b72 (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 dad06e4d1b835bac778b87090b1d3894b7535b14
Author: Werner Koch <wk at gnupg.org>
Date:   Thu Jan 9 19:14:09 2014 +0100

    cipher: Fix commit 94030e44
    
    * cipher/tiger.c (tiger_init): Add arg FLAGS.
    (tiger1_init, tiger2_init): Ditto.

diff --git a/cipher/tiger.c b/cipher/tiger.c
index 17c4119..91db4e6 100644
--- a/cipher/tiger.c
+++ b/cipher/tiger.c
@@ -610,20 +610,26 @@ do_init (void *context, int variant)
 }
 
 static void
-tiger_init (void *context)
+tiger_init (void *context, unsigned int flags)
 {
+  (void)flags;
+
   do_init (context, 0);
 }
 
 static void
-tiger1_init (void *context)
+tiger1_init (void *context, unsigned int flags)
 {
+  (void)flags;
+
   do_init (context, 1);
 }
 
 static void
-tiger2_init (void *context)
+tiger2_init (void *context, unsigned int flags)
 {
+  (void)flags;
+
   do_init (context, 2);
 }
 

commit 192e77d123fdb04c459c998b9eb1731618a833fa
Author: Werner Koch <wk at gnupg.org>
Date:   Thu Jan 9 19:14:09 2014 +0100

    tests: Rename tsexp.c
    
    * tests/tsexp.c: Rename to t-sexp.c
    
    Signed-off-by: Werner Koch <wk at gnupg.org>

diff --git a/tests/Makefile.am b/tests/Makefile.am
index f5b5b9f..884fb3d 100644
--- a/tests/Makefile.am
+++ b/tests/Makefile.am
@@ -19,7 +19,7 @@
 ## Process this file with automake to produce Makefile.in
 
 tests_bin = \
-        version mpitests tsexp t-convert \
+        version mpitests t-sexp t-convert \
 	t-mpi-bit t-mpi-point curves \
 	prime basic keygen pubkey hmac hashtest t-kdf keygrip \
 	fips186-dsa aeswrap pkcs1v2 random dsa-rfc6979 t-ed25519
diff --git a/tests/tsexp.c b/tests/t-sexp.c
similarity index 99%
rename from tests/tsexp.c
rename to tests/t-sexp.c
index 1ab9802..ec8b280 100644
--- a/tests/tsexp.c
+++ b/tests/t-sexp.c
@@ -1,4 +1,4 @@
-/* tsexp.c  -  S-expression regression tests
+/* t-sexp.c  -  S-expression regression tests
  *	Copyright (C) 2001, 2002, 2003, 2005 Free Software Foundation, Inc.
  *
  * This file is part of Libgcrypt.
@@ -28,7 +28,7 @@
 #include <assert.h>
 #include "../src/gcrypt-int.h"
 
-#define PGMNAME "tsexp"
+#define PGMNAME "t-sexp"
 
 #ifndef DIM
 # define DIM(v)		     (sizeof(v)/sizeof((v)[0]))

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

Summary of changes:
 cipher/tiger.c              |   12 +++++++++---
 tests/Makefile.am           |    2 +-
 tests/{tsexp.c => t-sexp.c} |    4 ++--
 3 files changed, 12 insertions(+), 6 deletions(-)
 rename tests/{tsexp.c => t-sexp.c} (99%)


hooks/post-receive
-- 
The GNU crypto library
http://git.gnupg.org


_______________________________________________
Gnupg-commits mailing list
Gnupg-commits at gnupg.org
http://lists.gnupg.org/mailman/listinfo/gnupg-commits




More information about the Gcrypt-devel mailing list