summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authortb <>2019-01-23 04:25:18 +0000
committertb <>2019-01-23 04:25:18 +0000
commitaeae4e6f2149f2428c5104f1437661cb4a9fa613 (patch)
tree03d95fe3f9533cef789911060c138560c15dc49a /src
parentb5497a3f7d31b91aa0945fd4841041ca2b2c3fd4 (diff)
downloadopenbsd-aeae4e6f2149f2428c5104f1437661cb4a9fa613.tar.gz
openbsd-aeae4e6f2149f2428c5104f1437661cb4a9fa613.tar.bz2
openbsd-aeae4e6f2149f2428c5104f1437661cb4a9fa613.zip
Remove static from handshakes[][] so it is visible from regress/
ok bcook
Diffstat (limited to 'src')
-rw-r--r--src/lib/libssl/tls13_handshake.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libssl/tls13_handshake.c b/src/lib/libssl/tls13_handshake.c
index 95f30ded7d..a93d5ea71f 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.19 2019/01/21 14:19:51 jsing Exp $ */ 1/* $OpenBSD: tls13_handshake.c,v 1.20 2019/01/23 04:25:18 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>
@@ -149,7 +149,7 @@ struct tls13_handshake_action state_machine[] = {
149 }, 149 },
150}; 150};
151 151
152static enum tls13_message_type handshakes[][TLS13_NUM_MESSAGE_TYPES] = { 152enum tls13_message_type handshakes[][TLS13_NUM_MESSAGE_TYPES] = {
153 [INITIAL] = { 153 [INITIAL] = {
154 CLIENT_HELLO, 154 CLIENT_HELLO,
155 SERVER_HELLO, 155 SERVER_HELLO,