diff options
author | Tavis Ormandy <taviso@gentoo.org> | 2006-04-19 13:35:40 +0000 |
---|---|---|
committer | Tavis Ormandy <taviso@gentoo.org> | 2006-04-19 13:35:40 +0000 |
commit | 7aa5ff23df05dad343e6dfb485b41083806c5bd7 (patch) | |
tree | b6c9b0f3c0d246af28b81772f8ccdc84c7aba415 /app-admin/otpcalc/files | |
parent | Made sed for ccache actually be determined by USE=ccache and removed sed for ... (diff) | |
download | gentoo-2-7aa5ff23df05dad343e6dfb485b41083806c5bd7.tar.gz gentoo-2-7aa5ff23df05dad343e6dfb485b41083806c5bd7.tar.bz2 gentoo-2-7aa5ff23df05dad343e6dfb485b41083806c5bd7.zip |
correct cypto prototypes with patch from tcort #123993
(Portage version: 2.0.51.22-r3)
Diffstat (limited to 'app-admin/otpcalc/files')
-rw-r--r-- | app-admin/otpcalc/files/otpcalc-crypto-proto.diff | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/app-admin/otpcalc/files/otpcalc-crypto-proto.diff b/app-admin/otpcalc/files/otpcalc-crypto-proto.diff new file mode 100644 index 000000000000..deb65465f5e6 --- /dev/null +++ b/app-admin/otpcalc/files/otpcalc-crypto-proto.diff @@ -0,0 +1,12 @@ +diff -urN otpCalc-0.97.orig/crypto.h otpCalc-0.97/crypto.h +--- otpCalc-0.97.orig/crypto.h 2001-05-12 02:04:54.000000000 -0400 ++++ otpCalc-0.97/crypto.h 2006-03-21 17:24:54.000000000 -0500 +@@ -1,4 +1,4 @@ +-void md4lite(char *, size_t); +-void md5lite(char *, size_t); +-void rmd160lite(char *, size_t); +-void sha1lite(char *, size_t); ++void md4lite(char *message, unsigned int len); ++void md5lite(char *message, unsigned int len); ++void rmd160lite(char *message, unsigned int len); ++void sha1lite(char *message, unsigned int len); |