summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormillert <millert@openbsd.org>1999-08-16 09:59:04 +0000
committermillert <millert@openbsd.org>1999-08-16 09:59:04 +0000
commitc50377f14a4722ad3c8ba8f7d3d650deca95c2d0 (patch)
tree3a0fdd05fdaddd20ee12280eb8bf61df7a94262f
parentAdd cdboot... (diff)
downloadwireguard-openbsd-c50377f14a4722ad3c8ba8f7d3d650deca95c2d0.tar.xz
wireguard-openbsd-c50377f14a4722ad3c8ba8f7d3d650deca95c2d0.zip
prototype mismatch for RMD160Update()
-rw-r--r--include/rmd160.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/rmd160.h b/include/rmd160.h
index 2452c2b0b7e..499a7658c8b 100644
--- a/include/rmd160.h
+++ b/include/rmd160.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: rmd160.h,v 1.3 1998/03/23 12:49:28 janjaap Exp $ */
+/* $OpenBSD: rmd160.h,v 1.4 1999/08/16 09:59:04 millert Exp $ */
/********************************************************************\
*
@@ -37,7 +37,7 @@ typedef struct {
void RMD160Init __P((RMD160_CTX *context));
void RMD160Transform __P((u_int32_t state[5], const u_int32_t block[16]));
-void RMD160Update __P((RMD160_CTX *context, const u_char *data, u_int nbytes));
+void RMD160Update __P((RMD160_CTX *context, const u_char *data, u_int32_t nbytes));
void RMD160Final __P((u_char digest[20], RMD160_CTX *context));
char *RMD160End __P((RMD160_CTX *, char *));
char *RMD160File __P((char *, char *));