Typo fixes

This commit is contained in:
Denis Vlasenko
2008-11-10 10:47:47 +00:00
parent 0a009c3c6b
commit c028ec280a
2 changed files with 2 additions and 2 deletions

View File

@ -2376,7 +2376,7 @@
"Create MIME-encoded message\n" \ "Create MIME-encoded message\n" \
"\nOptions:" \ "\nOptions:" \
"\n -C Charset" \ "\n -C Charset" \
"\n -e Tranfer encoding. Ignored. base64 is assumed" \ "\n -e Transfer encoding. Ignored. base64 is assumed" \
"\n" \ "\n" \
"\nOther options are silently ignored." \ "\nOther options are silently ignored." \

View File

@ -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) if ((ctx->count[0] += length) < length)
ctx->count[1]++; 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); memcpy(((unsigned char *) ctx->wbuf) + pos, sp, freeb);
sp += freeb; sp += freeb;
length -= freeb; length -= freeb;