diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-11-10 10:47:47 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-11-10 10:47:47 +0000 |
commit | c028ec280a71c45ba71bb4712db1968391a440cc (patch) | |
tree | 3ade5bb5fc1c0d7ee92eec47a2e3ca6d81f0fb59 | |
parent | 0a009c3c6b9b6d43575dcdda46076e7a87522426 (diff) | |
download | busybox-w32-c028ec280a71c45ba71bb4712db1968391a440cc.tar.gz busybox-w32-c028ec280a71c45ba71bb4712db1968391a440cc.tar.bz2 busybox-w32-c028ec280a71c45ba71bb4712db1968391a440cc.zip |
Typo fixes
-rw-r--r-- | include/usage.h | 2 | ||||
-rw-r--r-- | libbb/sha1.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/include/usage.h b/include/usage.h index 63aff315b..fcd488ea7 100644 --- a/include/usage.h +++ b/include/usage.h | |||
@@ -2376,7 +2376,7 @@ | |||
2376 | "Create MIME-encoded message\n" \ | 2376 | "Create MIME-encoded message\n" \ |
2377 | "\nOptions:" \ | 2377 | "\nOptions:" \ |
2378 | "\n -C Charset" \ | 2378 | "\n -C Charset" \ |
2379 | "\n -e Tranfer encoding. Ignored. base64 is assumed" \ | 2379 | "\n -e Transfer encoding. Ignored. base64 is assumed" \ |
2380 | "\n" \ | 2380 | "\n" \ |
2381 | "\nOther options are silently ignored." \ | 2381 | "\nOther options are silently ignored." \ |
2382 | 2382 | ||
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) | |||
97 | if ((ctx->count[0] += length) < length) | 97 | if ((ctx->count[0] += length) < length) |
98 | ctx->count[1]++; | 98 | ctx->count[1]++; |
99 | 99 | ||
100 | while (length >= freeb) { /* tranfer whole blocks while possible */ | 100 | while (length >= freeb) { /* transfer whole blocks while possible */ |
101 | memcpy(((unsigned char *) ctx->wbuf) + pos, sp, freeb); | 101 | memcpy(((unsigned char *) ctx->wbuf) + pos, sp, freeb); |
102 | sp += freeb; | 102 | sp += freeb; |
103 | length -= freeb; | 103 | length -= freeb; |