From: Dimitri Papadopoulos <3234522+DimitriPapadopoulos@users.noreply.github.com> Date: Thu, 29 Jun 2023 06:55:56 +0000 (+0200) Subject: Fix new typo found by codespell in demo X-Git-Tag: openssl-3.2.0-alpha1~565 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=4409e1522f026defaf326a65c0887dfd31ca4e13;p=thirdparty%2Fopenssl.git Fix new typo found by codespell in demo Reviewed-by: Matt Caswell Reviewed-by: Tom Cosgrove Reviewed-by: Paul Dale (Merged from https://github.com/openssl/openssl/pull/21322) --- diff --git a/demos/guide/quic-client-block.c b/demos/guide/quic-client-block.c index a79c16a94da..54d6a0bf376 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);