summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWerner Koch <wk@gnupg.org>1998-10-01 07:22:54 +0000
committerWerner Koch <wk@gnupg.org>1998-10-01 07:22:54 +0000
commitf1b106380df53014260f9a36bcd5c02da98ece78 (patch)
treefc9f0c5fa7a9c618103057923b6310b4ed31cd49
parent6f158e8392f8cc3c1546c75845e6c62a942ce4ac (diff)
downloadlibgcrypt-f1b106380df53014260f9a36bcd5c02da98ece78.tar.gz
*** empty log message ***
-rw-r--r--THANKS1
-rw-r--r--cipher/md.c2
-rw-r--r--mpi/mpiutil.c1
3 files changed, 3 insertions, 1 deletions
diff --git a/THANKS b/THANKS
index 000b24d1..4b8c773b 100644
--- a/THANKS
+++ b/THANKS
@@ -5,6 +5,7 @@ errors.
Anand Kumria wildfire@progsoc.uts.edu.au
Ariel T Glenn ariel@columbia.edu
+Brian Moore bem@cmc.net
Brian Warner warner@lothar.com
Caskey L. Dickson caskey@technocage.com
Charles Levert charles@comm.polymtl.ca
diff --git a/cipher/md.c b/cipher/md.c
index a0415523..0ec6d606 100644
--- a/cipher/md.c
+++ b/cipher/md.c
@@ -494,7 +494,7 @@ md_stop_debug( MD_HANDLE md )
}
#ifdef HAVE_U64_TYPEDEF
{ /* a kludge to pull in the __muldi3 for Solaris */
- volatile u32 a = (u32)md;
+ volatile u32 a = (u32)(ulong)md;
volatile u32 b = 42;
volatile u64 c;
c = a * b;
diff --git a/mpi/mpiutil.c b/mpi/mpiutil.c
index f2f1726c..5dd65aeb 100644
--- a/mpi/mpiutil.c
+++ b/mpi/mpiutil.c
@@ -21,6 +21,7 @@
#include <config.h>
#include <stdio.h>
#include <stdlib.h>
+#include <string.h>
#include <assert.h>
#include "mpi.h"