From 9b551600f801f1525d8c4aa2ec40072b67784255 Mon Sep 17 00:00:00 2001 From: tb Date: Sat, 4 Jun 2022 01:14:43 +0000 Subject: [PATCH] Tweak a comment using review feedback from jsing --- lib/libssl/tls13_server.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/libssl/tls13_server.c b/lib/libssl/tls13_server.c index 815c394737c..2c1c12ff258 100644 --- a/lib/libssl/tls13_server.c +++ b/lib/libssl/tls13_server.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tls13_server.c,v 1.97 2022/06/03 13:26:13 tb Exp $ */ +/* $OpenBSD: tls13_server.c,v 1.98 2022/06/04 01:14:43 tb Exp $ */ /* * Copyright (c) 2019, 2020 Joel Sing * Copyright (c) 2020 Bob Beck @@ -108,9 +108,9 @@ tls13_client_hello_required_extensions(struct tls13_ctx *ctx) */ /* - * RFC 8446, 4.2.9: if we got a pre_shared_key, then we also need - * psk_key_exchange_modes. Otherwise, section 9.2 specifies that we - * need both signature_algorithms and supported_groups. + * RFC 8446 section 4.2.9 - if we received a pre_shared_key, then we + * also need psk_key_exchange_modes. Otherwise, section 9.2 specifies + * that we need both signature_algorithms and supported_groups. */ if (tlsext_extension_seen(s, TLSEXT_TYPE_pre_shared_key)) { if (!tlsext_extension_seen(s, -- 2.20.1