summaryrefslogtreecommitdiffstats
path: root/demos
diff options
context:
space:
mode:
authorDimitri Papadopoulos <3234522+DimitriPapadopoulos@users.noreply.github.com>2023-06-29 08:55:56 +0200
committerPauli <pauli@openssl.org>2023-07-01 00:10:15 +1000
commit4409e1522f026defaf326a65c0887dfd31ca4e13 (patch)
tree4133ed6563ba4fd9bca415e0d924dc73ffe3db4b /demos
parent6a2b8269a8fb31a0c04b5f4f1ac1074c53319135 (diff)
Fix new typo found by codespell in demo
Reviewed-by: Matt Caswell <matt@openssl.org> Reviewed-by: Tom Cosgrove <tom.cosgrove@arm.com> Reviewed-by: Paul Dale <pauli@openssl.org> (Merged from https://github.com/openssl/openssl/pull/21322)
Diffstat (limited to 'demos')
-rw-r--r--demos/guide/quic-client-block.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/demos/guide/quic-client-block.c b/demos/guide/quic-client-block.c
index a79c16a94d..54d6a0bf37 100644
--- a/demos/guide/quic-client-block.c
+++ b/demos/guide/quic-client-block.c
@@ -203,7 +203,7 @@ int main(void)
}
if (!SSL_set_initial_peer_addr(ssl, peer_addr)) {
- printf("Failed to set the inital peer address\n");
+ printf("Failed to set the initial peer address\n");
goto end;
}
@@ -263,7 +263,7 @@ int main(void)
do {
ret = SSL_shutdown(ssl);
if (ret < 0) {
- printf("Error shuting down: %d\n", ret);
+ printf("Error shutting down: %d\n", ret);
goto end;
}
} while (ret != 1);