mirror of
https://github.com/openssl/openssl.git
synced 2025-01-19 16:33:33 +08:00
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:
parent
6a2b8269a8
commit
4409e1522f
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user