aboutsummaryrefslogtreecommitdiff
path: root/libbb/md5.c
diff options
context:
space:
mode:
authorvda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-09-17 16:28:10 +0000
committervda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-09-17 16:28:10 +0000
commit85e2f33ede6f8cb70f9f50f6fb18c7b0a6082212 (patch)
tree94c3c0678d1349497abe2db6004e9331e50f6d37 /libbb/md5.c
parent75648f106cb64fb6ccbb4a79d89fd6aef7298081 (diff)
downloadbusybox-w32-85e2f33ede6f8cb70f9f50f6fb18c7b0a6082212.tar.gz
busybox-w32-85e2f33ede6f8cb70f9f50f6fb18c7b0a6082212.tar.bz2
busybox-w32-85e2f33ede6f8cb70f9f50f6fb18c7b0a6082212.zip
whitespace cleanup
git-svn-id: svn://busybox.net/trunk/busybox@16142 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'libbb/md5.c')
-rw-r--r--libbb/md5.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libbb/md5.c b/libbb/md5.c
index cfdffe835..132efdf93 100644
--- a/libbb/md5.c
+++ b/libbb/md5.c
@@ -440,7 +440,7 @@ void *md5_end(void *resbuf, md5_ctx_t *ctx)
440 /* Process last bytes. */ 440 /* Process last bytes. */
441 if (buf != ctx->buffer) md5_hash_block(ctx->buffer, ctx); 441 if (buf != ctx->buffer) md5_hash_block(ctx->buffer, ctx);
442 md5_hash_block(buf, ctx); 442 md5_hash_block(buf, ctx);
443 443
444 /* Put result from CTX in first 16 bytes following RESBUF. The result is 444 /* Put result from CTX in first 16 bytes following RESBUF. The result is
445 * always in little endian byte order, so that a byte-wise output yields 445 * always in little endian byte order, so that a byte-wise output yields
446 * to the wanted ASCII representation of the message digest. 446 * to the wanted ASCII representation of the message digest.