summaryrefslogtreecommitdiff
path: root/src/lib
diff options
context:
space:
mode:
authortb <>2022-04-19 17:01:43 +0000
committertb <>2022-04-19 17:01:43 +0000
commit7b67219c7bc10448e8d9afb3fa8b1617f0a8e1ef (patch)
tree54edea670e9094a79321bedd8f2edd2de7b424f4 /src/lib
parent9a7afdc905b171e315988f6cd55c81595af9e132 (diff)
downloadopenbsd-7b67219c7bc10448e8d9afb3fa8b1617f0a8e1ef.tar.gz
openbsd-7b67219c7bc10448e8d9afb3fa8b1617f0a8e1ef.tar.bz2
openbsd-7b67219c7bc10448e8d9afb3fa8b1617f0a8e1ef.zip
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 'src/lib')
-rw-r--r--src/lib/libssl/tls13_handshake.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/lib/libssl/tls13_handshake.c b/src/lib/libssl/tls13_handshake.c
index cca8560fc2..c40442fdf9 100644
--- a/src/lib/libssl/tls13_handshake.c
+++ b/src/lib/libssl/tls13_handshake.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: tls13_handshake.c,v 1.70 2021/09/16 19:25:30 jsing Exp $ */ 1/* $OpenBSD: tls13_handshake.c,v 1.71 2022/04/19 17:01:43 tb Exp $ */
2/* 2/*
3 * Copyright (c) 2018-2021 Theo Buehler <tb@openbsd.org> 3 * Copyright (c) 2018-2021 Theo Buehler <tb@openbsd.org>
4 * Copyright (c) 2019 Joel Sing <jsing@openbsd.org> 4 * Copyright (c) 2019 Joel Sing <jsing@openbsd.org>
@@ -291,8 +291,6 @@ tls13_handshake_message_name(uint8_t msg_type)
291 return "CertificateVerify"; 291 return "CertificateVerify";
292 case TLS13_MT_FINISHED: 292 case TLS13_MT_FINISHED:
293 return "Finished"; 293 return "Finished";
294 case TLS13_MT_KEY_UPDATE:
295 return "KeyUpdate";
296 } 294 }
297 return "Unknown"; 295 return "Unknown";
298} 296}