summaryrefslogtreecommitdiff
path: root/include/linux
diff options
context:
space:
mode:
authorMatt Mackall <mpm@selenic.com>2005-03-07 18:14:22 -0800
committerLinus Torvalds <torvalds@ppc970.osdl.org>2005-03-07 18:14:22 -0800
commit567200b8fba50573de44bc6f4e71572bb8c5e987 (patch)
tree00136bb350e56e145ab707518ca81c637d4f10f9 /include/linux
parent3ced79bdd08d2826eed9342bda625c8198638e2f (diff)
[PATCH] random: Kill duplicate halfmd4 in ext3 htree
Replace duplicate halfMD4 code with call to lib/ Signed-off-by: Matt Mackall <mpm@selenic.com> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'include/linux')
-rw-r--r--include/linux/cryptohash.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/cryptohash.h b/include/linux/cryptohash.h
index 7d9e3576dfed..c118b2ad9807 100644
--- a/include/linux/cryptohash.h
+++ b/include/linux/cryptohash.h
@@ -7,6 +7,6 @@
void sha_init(__u32 *buf);
void sha_transform(__u32 *digest, const char *data, __u32 *W);
-__u32 half_md4_transform(__u32 const buf[4], __u32 const in[8]);
+__u32 half_md4_transform(__u32 buf[4], __u32 const in[8]);
#endif