mirror of
https://github.com/sheumann/hush.git
synced 2024-12-21 23:29:34 +00:00
Typo fixes
This commit is contained in:
parent
0a009c3c6b
commit
c028ec280a
@ -2376,7 +2376,7 @@
|
||||
"Create MIME-encoded message\n" \
|
||||
"\nOptions:" \
|
||||
"\n -C Charset" \
|
||||
"\n -e Tranfer encoding. Ignored. base64 is assumed" \
|
||||
"\n -e Transfer encoding. Ignored. base64 is assumed" \
|
||||
"\n" \
|
||||
"\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)
|
||||
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;
|
||||
|
Loading…
Reference in New Issue
Block a user