summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGarrett Wollman <wollman@FreeBSD.org>1999-02-26 20:06:46 +0000
committerGarrett Wollman <wollman@FreeBSD.org>1999-02-26 20:06:46 +0000
commit617f28f74418f6ecc2a4d7d741daff5709721963 (patch)
treedbefe66c6a4737ea429379f7c016f9df74fb8931
parent2c2bc092fabab754bc18f65af55c5f800a4a1693 (diff)
Notes
-rw-r--r--lib/libmd/rmd160c.c3
-rw-r--r--lib/libmd/sha0c.c4
2 files changed, 4 insertions, 3 deletions
diff --git a/lib/libmd/rmd160c.c b/lib/libmd/rmd160c.c
index 5f4d9cc141d4..3cd6657fe429 100644
--- a/lib/libmd/rmd160c.c
+++ b/lib/libmd/rmd160c.c
@@ -55,12 +55,13 @@
* copied and put under another distribution licence
* [including the GNU Public Licence.]
*
- * $Id$
+ * $Id: rmd160c.c,v 1.1 1999/02/26 18:41:45 wollman Exp $
*/
#include <sys/types.h>
#include <stdio.h>
+#inlcude <string.h>
#if 0
#include <machine/ansi.h> /* we use the __ variants of bit-sized types */
diff --git a/lib/libmd/sha0c.c b/lib/libmd/sha0c.c
index 727bee329cfc..29e1c78d477c 100644
--- a/lib/libmd/sha0c.c
+++ b/lib/libmd/sha0c.c
@@ -55,7 +55,7 @@
* copied and put under another distribution licence
* [including the GNU Public Licence.]
*
- * $Id$
+ * $Id: sha0c.c,v 1.1 1999/02/26 04:24:56 wollman Exp $
*/
#include <sys/types.h>
@@ -117,7 +117,7 @@ SHA_CTX *c;
void SHA_Update(c, data, len)
SHA_CTX *c;
const unsigned char *data;
-u_int32_t len;
+size_t len;
{
register u_int32_t *p;
int ew,ec,sw,sc;