summaryrefslogtreecommitdiffstats
path: root/demos
diff options
context:
space:
mode:
authorDimitri Papadopoulos <3234522+DimitriPapadopoulos@users.noreply.github.com>2023-06-15 08:36:35 +0200
committerPauli <pauli@openssl.org>2023-06-18 16:53:09 +1000
commit6ea4da6e4d03cd9591805e166cfd94a374c33628 (patch)
treeb96d170dea13d0875147923b0df48c18072af842 /demos
parent6c0ecc2bce64cc86948a51f80f832b5e48a9ebea (diff)
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.c4
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;
}