summaryrefslogtreecommitdiff
path: root/src/lib/libssl/tls13_handshake.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libssl/tls13_handshake.c')
-rw-r--r--src/lib/libssl/tls13_handshake.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/libssl/tls13_handshake.c b/src/lib/libssl/tls13_handshake.c
index 48a01d3ca4..ca36f879b4 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.38 2020/01/21 03:40:05 beck Exp $ */ 1/* $OpenBSD: tls13_handshake.c,v 1.39 2020/01/22 02:39:45 tb Exp $ */
2/* 2/*
3 * Copyright (c) 2018-2019 Theo Buehler <tb@openbsd.org> 3 * Copyright (c) 2018-2019 Theo Buehler <tb@openbsd.org>
4 * Copyright (c) 2019 Joel Sing <jsing@openbsd.org> 4 * Copyright (c) 2019 Joel Sing <jsing@openbsd.org>
@@ -53,6 +53,7 @@ struct tls13_handshake_action state_machine[] = {
53 .handshake_type = TLS13_MT_CLIENT_HELLO, 53 .handshake_type = TLS13_MT_CLIENT_HELLO,
54 .sender = TLS13_HS_CLIENT, 54 .sender = TLS13_HS_CLIENT,
55 .send = tls13_client_hello_send, 55 .send = tls13_client_hello_send,
56 .sent = tls13_client_hello_sent,
56 .recv = tls13_client_hello_recv, 57 .recv = tls13_client_hello_recv,
57 }, 58 },
58 [CLIENT_HELLO_RETRY] = { 59 [CLIENT_HELLO_RETRY] = {