summaryrefslogtreecommitdiffstats
path: root/lib/libcrypto/evp/encode.c
diff options
context:
space:
mode:
authorjsing <jsing@openbsd.org>2014-05-03 16:30:53 +0000
committerjsing <jsing@openbsd.org>2014-05-03 16:30:53 +0000
commit7fa856e8fa61cbd2a03170600b270a265d9f5312 (patch)
tree12fff9a78c6131d725c2be767dfd59adff933300 /lib/libcrypto/evp/encode.c
parentKNF. (diff)
downloadwireguard-openbsd-7fa856e8fa61cbd2a03170600b270a265d9f5312.tar.xz
wireguard-openbsd-7fa856e8fa61cbd2a03170600b270a265d9f5312.zip
It is definitly not the correct spelling.
Diffstat (limited to 'lib/libcrypto/evp/encode.c')
-rw-r--r--lib/libcrypto/evp/encode.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libcrypto/evp/encode.c b/lib/libcrypto/evp/encode.c
index dca5ffdcf40..9540a849c9f 100644
--- a/lib/libcrypto/evp/encode.c
+++ b/lib/libcrypto/evp/encode.c
@@ -224,7 +224,7 @@ int
EVP_DecodeUpdate(EVP_ENCODE_CTX *ctx, unsigned char *out, int *outl,
const unsigned char *in, int inl)
{
- int seof = -1, eof = 0, rv = -1, ret = 0, i,v, tmp, n,ln, exp_nl;
+ int seof = -1, eof = 0, rv = -1, ret = 0, i,v, tmp, n, ln, exp_nl;
unsigned char *d;
n = ctx->num;
@@ -259,7 +259,7 @@ EVP_DecodeUpdate(EVP_ENCODE_CTX *ctx, unsigned char *out, int *outl,
goto end;
}
- /* have we seen a '=' which is 'definitly' the last
+ /* have we seen a '=' which is 'definitely' the last
* input line. seof will point to the character that
* holds it. and eof will hold how many characters to
* chop off. */