summaryrefslogtreecommitdiffstats
path: root/demos
diff options
context:
space:
mode:
authorFdaSilvaYY <fdasilvayy@gmail.com>2022-08-23 20:45:13 +0200
committerTomas Mraz <tomas@openssl.org>2022-11-23 18:21:53 +0100
commitfee9986c3da13e533d7467df7f792253797f4115 (patch)
tree880b9fdd3e398291c9a03756762ade1e47f549bb /demos
parentf24b716f26f0e4956ea5cb049876cf2738e5e38d (diff)
apps & al : Fix various typos, repeated words, align some spelling to LDP.
Mostly revamped from #16712 - fall thru -> fall through - time stamp -> timestamp - host name -> hostname - ipv6 -> IPv6 Reviewed-by: Tomas Mraz <tomas@openssl.org> Reviewed-by: Paul Dale <pauli@openssl.org> (Merged from https://github.com/openssl/openssl/pull/19059) (cherry picked from commit 9929c81702381bff54f833d6fe0a3304f4e2b635)
Diffstat (limited to 'demos')
-rw-r--r--demos/sslecho/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/demos/sslecho/main.c b/demos/sslecho/main.c
index 588158e749..0233794c4e 100644
--- a/demos/sslecho/main.c
+++ b/demos/sslecho/main.c
@@ -273,7 +273,7 @@ int main(int argc, char **argv)
/* Create client SSL structure using dedicated client socket */
ssl = SSL_new(ssl_ctx);
SSL_set_fd(ssl, client_skt);
- /* Set host name for SNI */
+ /* Set hostname for SNI */
SSL_set_tlsext_host_name(ssl, rem_server_ip);
/* Configure server hostname check */
SSL_set1_host(ssl, rem_server_ip);