From 7e35eb77292fe6464889ddc8329c6a64136f969d Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Fri, 23 Feb 2018 23:29:01 +0000 Subject: spelling fixes Detected using the `codespell` tool. Also contains one URL protocol upgrade. Closes https://github.com/curl/curl/pull/2334 --- lib/sha256.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/sha256.c') diff --git a/lib/sha256.c b/lib/sha256.c index c2acb5265..55716c63b 100644 --- a/lib/sha256.c +++ b/lib/sha256.c @@ -242,7 +242,7 @@ static int SHA256_Final(unsigned char *out, sha256_compress(md, md->buf); md->curlen = 0; } - /* pad upto 56 bytes of zeroes */ + /* pad up to 56 bytes of zeroes */ while(md->curlen < 56) { md->buf[md->curlen++] = (unsigned char)0; } -- cgit v1.2.3