diff options
author | Dimitri Papadopoulos <3234522+DimitriPapadopoulos@users.noreply.github.com> | 2023-06-15 08:36:35 +0200 |
---|---|---|
committer | Pauli <pauli@openssl.org> | 2023-06-18 08:53:09 +0200 |
commit | 6ea4da6e4d03cd9591805e166cfd94a374c33628 (patch) | |
tree | b96d170dea13d0875147923b0df48c18072af842 /demos | |
parent | Fix function signatures in aes-gcm-armv8 comments. (diff) | |
download | openssl-6ea4da6e4d03cd9591805e166cfd94a374c33628.tar.xz openssl-6ea4da6e4d03cd9591805e166cfd94a374c33628.zip |
Fix new typos found by codespell
Reviewed-by: Tom Cosgrove <tom.cosgrove@arm.com>
Reviewed-by: Paul Dale <pauli@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/21210)
Diffstat (limited to 'demos')
-rw-r--r-- | demos/guide/tls-client-block.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/demos/guide/tls-client-block.c b/demos/guide/tls-client-block.c index ef8248c734..c399094d94 100644 --- a/demos/guide/tls-client-block.c +++ b/demos/guide/tls-client-block.c @@ -137,7 +137,7 @@ int main(void) /* * TLSv1.1 or earlier are deprecated by IETF and are generally to be - * avoided if possible. We require a mimimum TLS version of TLSv1.2. + * avoided if possible. We require a minimum TLS version of TLSv1.2. */ if (!SSL_CTX_set_min_proto_version(ctx, TLS1_2_VERSION)) { printf("Failed to set the minimum TLS protocol version\n"); @@ -245,7 +245,7 @@ int main(void) * for one back". But we already know we got one from the peer * because of the SSL_ERROR_ZERO_RETURN above. */ - printf("Error shuting down\n"); + printf("Error shutting down\n"); goto end; } |