From 25fdc2addb1b1d732ca0b0b78d00ef1386fe3884 Mon Sep 17 00:00:00 2001 From: Jan Bruckner Date: Tue, 26 Jul 2022 10:45:07 +0200 Subject: [PATCH] Fix minor typos Signed-off-by: Jan Bruckner --- include/mbedtls/ssl.h | 2 +- programs/ssl/ssl_server2.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/include/mbedtls/ssl.h b/include/mbedtls/ssl.h index ebb3f51b8..5099cfb6b 100644 --- a/include/mbedtls/ssl.h +++ b/include/mbedtls/ssl.h @@ -257,7 +257,7 @@ */ #if !defined(MBEDTLS_DEPRECATED_REMOVED) -/* These are the high an low bytes of ProtocolVersion as defined by: +/* These are the high and low bytes of ProtocolVersion as defined by: * - RFC 5246: ProtocolVersion version = { 3, 3 }; // TLS v1.2 * - RFC 8446: see section 4.2.1 */ diff --git a/programs/ssl/ssl_server2.c b/programs/ssl/ssl_server2.c index 8e432bde8..67b6ca22f 100644 --- a/programs/ssl/ssl_server2.c +++ b/programs/ssl/ssl_server2.c @@ -676,9 +676,9 @@ struct options int force_srtp_profile; /* SRTP protection profile to use or all */ int support_mki; /* The dtls mki mki support */ const char *key1_opaque_alg1; /* Allowed opaque key 1 alg 1 */ - const char *key1_opaque_alg2; /* Allowed Opaque key 1 alg 2 */ + const char *key1_opaque_alg2; /* Allowed opaque key 1 alg 2 */ const char *key2_opaque_alg1; /* Allowed opaque key 2 alg 1 */ - const char *key2_opaque_alg2; /* Allowed Opaque key 2 alg 2 */ + const char *key2_opaque_alg2; /* Allowed opaque key 2 alg 2 */ } opt; #include "ssl_test_common_source.c"