Typo fixes
This commit is contained in:
@ -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." \
|
||||||
|
|
||||||
|
@ -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;
|
||||||
|
Reference in New Issue
Block a user