aboutsummaryrefslogtreecommitdiff
path: root/libbb/sha1.c
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2008-11-10 10:47:47 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2008-11-10 10:47:47 +0000
commitc028ec280a71c45ba71bb4712db1968391a440cc (patch)
tree3ade5bb5fc1c0d7ee92eec47a2e3ca6d81f0fb59 /libbb/sha1.c
parent0a009c3c6b9b6d43575dcdda46076e7a87522426 (diff)
downloadbusybox-c028ec280a71c45ba71bb4712db1968391a440cc.tar.gz
Typo fixes
Diffstat (limited to 'libbb/sha1.c')
-rw-r--r--libbb/sha1.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libbb/sha1.c b/libbb/sha1.c
index 44ea4eb47..ae72e4da7 100644
--- a/libbb/sha1.c
+++ b/libbb/sha1.c
@@ -97,7 +97,7 @@ void FAST_FUNC sha1_hash(const void *data, size_t length, sha1_ctx_t *ctx)
if ((ctx->count[0] += length) < length)
ctx->count[1]++;
- while (length >= freeb) { /* tranfer whole blocks while possible */
+ while (length >= freeb) { /* transfer whole blocks while possible */
memcpy(((unsigned char *) ctx->wbuf) + pos, sp, freeb);
sp += freeb;
length -= freeb;