diff options
author | FdaSilvaYY <fdasilvayy@gmail.com> | 2016-03-10 21:34:48 +0100 |
---|---|---|
committer | Rich Salz <rsalz@openssl.org> | 2016-04-04 21:06:32 +0200 |
commit | 620d540bd47a96fb6905fbbdd8ea5167a8841a3e (patch) | |
tree | f1686eadbd85f953a44d0527774fd6d4007d4c3e /ssl/s3_enc.c | |
parent | Fix a possible leak on NETSCAPE_SPKI_verify failure. (diff) | |
download | openssl-620d540bd47a96fb6905fbbdd8ea5167a8841a3e.tar.xz openssl-620d540bd47a96fb6905fbbdd8ea5167a8841a3e.zip |
various spelling fixes
Reviewed-by: Richard Levitte <levitte@openssl.org>
Reviewed-by: Rich Salz <rsalz@openssl.org>
Diffstat (limited to 'ssl/s3_enc.c')
-rw-r--r-- | ssl/s3_enc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ssl/s3_enc.c b/ssl/s3_enc.c index 35ef9487f9..ec5ff9be53 100644 --- a/ssl/s3_enc.c +++ b/ssl/s3_enc.c @@ -231,7 +231,7 @@ int ssl3_change_cipher_state(SSL *s, int which) goto err; else /* - * make sure it's intialized in case we exit later with an error + * make sure it's initialised in case we exit later with an error */ EVP_CIPHER_CTX_reset(s->enc_read_ctx); dd = s->enc_read_ctx; @@ -262,7 +262,7 @@ int ssl3_change_cipher_state(SSL *s, int which) goto err; else /* - * make sure it's intialized in case we exit later with an error + * make sure it's initialised in case we exit later with an error */ EVP_CIPHER_CTX_reset(s->enc_write_ctx); dd = s->enc_write_ctx; |