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)
This commit is contained in:
Dimitri Papadopoulos 2023-06-29 08:55:56 +02:00 committed by Pauli
parent 6a2b8269a8
commit 4409e1522f

View File

@ -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);