summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMoritz Schulte <mo@g10code.com>2005-04-09 16:57:54 +0000
committerMoritz Schulte <mo@g10code.com>2005-04-09 16:57:54 +0000
commitb619ab452319ea53947f4a3dbe9ce3fa902b6b42 (patch)
treef223358b58d4fc45f08ec65fb1c3ec7d4bfb9ee8
parent6bbc384d1b6ae221ed5951edce15064aee7964d4 (diff)
downloadlibgcrypt-b619ab452319ea53947f4a3dbe9ce3fa902b6b42.tar.gz
2005-04-09 Moritz Schulte <moritz@g10code.com>
* tiger.c: Do not forget to include file types.h. * md.c: Likewise. These changes make Libgcrypt actually INCLUDE the Tiger algorithm.
-rw-r--r--cipher/ChangeLog6
-rw-r--r--cipher/md.c1
-rw-r--r--cipher/tiger.c1
3 files changed, 8 insertions, 0 deletions
diff --git a/cipher/ChangeLog b/cipher/ChangeLog
index 3a6ba62e..a49561fc 100644
--- a/cipher/ChangeLog
+++ b/cipher/ChangeLog
@@ -1,3 +1,9 @@
+2005-04-09 Moritz Schulte <moritz@g10code.com>
+
+ * tiger.c: Do not forget to include file types.h.
+ * md.c: Likewise. These changes make Libgcrypt actually INCLUDE
+ the Tiger algorithm.
+
2005-03-30 Moritz Schulte <moritz@g10code.com>
* ac.c (_gcry_ac_data_from_sexp): Use length of SEXP_CUR, not
diff --git a/cipher/md.c b/cipher/md.c
index 06b46e6e..5e038589 100644
--- a/cipher/md.c
+++ b/cipher/md.c
@@ -25,6 +25,7 @@
#include <errno.h>
#include <assert.h>
+#include "types.h"
#include "g10lib.h"
#include "cipher.h"
#include "ath.h"
diff --git a/cipher/tiger.c b/cipher/tiger.c
index 1a811bc4..452bdb31 100644
--- a/cipher/tiger.c
+++ b/cipher/tiger.c
@@ -23,6 +23,7 @@
#include <stdlib.h>
#include <string.h>
+#include "types.h"
#include "g10lib.h"
#include "memory.h"
#include "cipher.h"