summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorTheo Buehler <tb@cvs.openbsd.org>2022-04-19 17:01:44 +0000
committerTheo Buehler <tb@cvs.openbsd.org>2022-04-19 17:01:44 +0000
commit0342523c10605721db02e72b77ba700ab134c40e (patch)
tree5164e3e19c90846b4d6608f2c5449538fb87d2b2 /lib
parentc725eab829c4ecdb2a5e5cca02b3e43baa28cc88 (diff)
Drop unused KeyUpdate from debug printf
The handshake state machine does not handle key updates since that's a post-handshake handshake message. This is code under #ifdef TLS13_DEBUG and if it is ever to be reused in tls13_handshake_msg.c, that will have to be revisited. ok inoguchi jsing
Diffstat (limited to 'lib')
-rw-r--r--lib/libssl/tls13_handshake.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/libssl/tls13_handshake.c b/lib/libssl/tls13_handshake.c
index cca8560fc27..c40442fdf97 100644
--- a/lib/libssl/tls13_handshake.c
+++ b/lib/libssl/tls13_handshake.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: tls13_handshake.c,v 1.70 2021/09/16 19:25:30 jsing Exp $ */
+/* $OpenBSD: tls13_handshake.c,v 1.71 2022/04/19 17:01:43 tb Exp $ */
/*
* Copyright (c) 2018-2021 Theo Buehler <tb@openbsd.org>
* Copyright (c) 2019 Joel Sing <jsing@openbsd.org>
@@ -291,8 +291,6 @@ tls13_handshake_message_name(uint8_t msg_type)
return "CertificateVerify";
case TLS13_MT_FINISHED:
return "Finished";
- case TLS13_MT_KEY_UPDATE:
- return "KeyUpdate";
}
return "Unknown";
}