[git] GCRYPT - branch, LIBGCRYPT-1-6-BRANCH, updated. libgcrypt-1.6.0-12-gd76fffa

by Werner Koch cvs at cvs.gnupg.org
Mon Jan 20 11:17:26 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, LIBGCRYPT-1-6-BRANCH has been updated
       via  d76fffaedce6e93304b69ea690213836ed3b9a38 (commit)
      from  77f28793481d1f41755242377164e4caaa1d106d (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 d76fffaedce6e93304b69ea690213836ed3b9a38
Author: Werner Koch <wk at gnupg.org>
Date:   Thu Jan 9 19:14:09 2014 +0100

    cipher: Fix commit 77f28793
    
    * cipher/tiger.c (tiger_init): Add arg FLAGS.
    (tiger1_init, tiger2_init): Ditto.
    
    (cherry picked from commit dad06e4d1b835bac778b87090b1d3894b7535b14)

diff --git a/cipher/tiger.c b/cipher/tiger.c
index 9b8d0ef..414dcc4 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);
 }
 

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

Summary of changes:
 cipher/tiger.c |   12 +++++++++---
 1 file changed, 9 insertions(+), 3 deletions(-)


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




More information about the Gnupg-commits mailing list