summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoel Sing <jsing@cvs.openbsd.org>2014-05-03 16:30:54 +0000
committerJoel Sing <jsing@cvs.openbsd.org>2014-05-03 16:30:54 +0000
commit652065f64c19d03fc35641174e4e05460cdea4f9 (patch)
tree80700c36a908e15ded3d0fa1b4e8dfd4061ffa14
parentb0db3907f95fc5120c5b47efc2713209fbf932c2 (diff)
It is definitly not the correct spelling.
-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. */