[git] GCRYPT - branch, master, updated. libgcrypt-1.5.0-356-g84bcb40

by Jussi Kivilinna cvs at cvs.gnupg.org
Wed Nov 6 15:52:46 CET 2013


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  84bcb400e7db7268abfc29b5ab1513b0c063b293 (commit)
      from  6d169b654c7ff04c10f73afe80b2c70cefa410c1 (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 84bcb400e7db7268abfc29b5ab1513b0c063b293
Author: Jussi Kivilinna <jussi.kivilinna at iki.fi>
Date:   Wed Nov 6 16:51:55 2013 +0200

    Fix 'u32' build error with Camellia
    
    * cipher/camellia.c: Add include for <config.h> and "types.h".
    (u32): Remove.
    (u8): Typedef as 'byte'.
    --
    
    Signed-off-by: Jussi Kivilinna <jussi.kivilinna at iki.fi>

diff --git a/cipher/camellia.c b/cipher/camellia.c
index 9067246..e7085a7 100644
--- a/cipher/camellia.c
+++ b/cipher/camellia.c
@@ -22,15 +22,15 @@
  *  http://info.isl.ntt.co.jp/crypt/eng/camellia/specifications.html
  */
 
+#include <config.h>
 #include <string.h>
 #include <stdlib.h>
 
+#include "types.h"
 #include "bufhelp.h"
 #include "camellia.h"
 
-/* u32 must be 32bit word */
-typedef unsigned int u32;
-typedef unsigned char u8;
+typedef byte u8;
 
 /* key constants */
 

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

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


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