From 7ab94ca3516db95b53ee944c9bddb6c3b75641ae Mon Sep 17 00:00:00 2001
From: Denys Vlasenko <vda.linux@googlemail.com>
Date: Tue, 19 Oct 2010 02:33:39 +0200
Subject: md5: remove outdated comment

Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
---
 libbb/hash_md5_sha.c | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

(limited to 'libbb')

diff --git a/libbb/hash_md5_sha.c b/libbb/hash_md5_sha.c
index f5f875a64..aeacddef8 100644
--- a/libbb/hash_md5_sha.c
+++ b/libbb/hash_md5_sha.c
@@ -461,9 +461,7 @@ void FAST_FUNC md5_end(md5_ctx_t *ctx, void *resbuf)
 	/* MD5 stores total in LE, need to swap on BE arches: */
 	common64_end(ctx, /*swap_needed:*/ BB_BIG_ENDIAN);
 
-	/* The MD5 result is in little endian byte order.
-	 * We (ab)use the fact that A-D are consecutive in memory.
-	 */
+	/* The MD5 result is in little endian byte order */
 #if BB_BIG_ENDIAN
 	ctx->hash[0] = SWAP_LE32(ctx->hash[0]);
 	ctx->hash[1] = SWAP_LE32(ctx->hash[1]);
-- 
cgit v1.2.3