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