Date: Fri, 26 Feb 1999 12:02:38 -0800 (PST) From: Matthew Jacob <mjacob@feral.com> To: Sheldon Hearn <sheldonh@iafrica.com> Cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: more libmd- alpha fixes Message-ID: <Pine.LNX.4.04.9902261159250.2419-100000@feral-gw> In-Reply-To: <31508.920053899@axl.noc.iafrica.com>
next in thread | previous in thread | raw e-mail | index | archive | help
Fixes for alpha. Strictly speaking, they're for any platform as both are mom && apple pie correctness issues (needs prototype decl, match actual with formal decls) Index: rmd160c.c =================================================================== RCS file: /home/ncvs/src/lib/libmd/rmd160c.c,v retrieving revision 1.1 diff -u -r1.1 rmd160c.c --- rmd160c.c 1999/02/26 18:41:45 1.1 +++ rmd160c.c 1999/02/26 19:59:50 @@ -59,6 +59,7 @@ */ #include <sys/types.h> +#include <string.h> #include <stdio.h> Index: sha0c.c =================================================================== RCS file: /home/ncvs/src/lib/libmd/sha0c.c,v retrieving revision 1.1 diff -u -r1.1 sha0c.c --- sha0c.c 1999/02/26 04:24:56 1.1 +++ sha0c.c 1999/02/26 19:59:50 @@ -117,7 +117,7 @@ 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; To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?Pine.LNX.4.04.9902261159250.2419-100000>