From owner-cvs-all Fri Feb 26 12: 3:47 1999 Delivered-To: cvs-all@freebsd.org Received: from feral.com (feral.com [192.67.166.1]) by hub.freebsd.org (Postfix) with ESMTP id 369E71508C; Fri, 26 Feb 1999 12:03:28 -0800 (PST) (envelope-from mjacob@feral.com) Received: from localhost (mjacob@localhost) by feral.com (8.8.7/8.8.7) with ESMTP id MAA02588; Fri, 26 Feb 1999 12:02:38 -0800 Date: Fri, 26 Feb 1999 12:02:38 -0800 (PST) From: Matthew Jacob X-Sender: mjacob@feral-gw Reply-To: mjacob@feral.com To: Sheldon Hearn Cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: more libmd- alpha fixes In-Reply-To: <31508.920053899@axl.noc.iafrica.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk 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 +#include #include 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