diff options
author | Theo Buehler <tb@cvs.openbsd.org> | 2019-01-23 04:25:19 +0000 |
---|---|---|
committer | Theo Buehler <tb@cvs.openbsd.org> | 2019-01-23 04:25:19 +0000 |
commit | 1a3c30c6f4e96b1fdec96162da201f8ede6ed198 (patch) | |
tree | 799214c3a334f06de9ddb1ce51d4d7b7975db9bf /lib/libssl/tls13_handshake.c | |
parent | b789f17b25afab74f9fc21b00ace5d03da0f4f2e (diff) |
Remove static from handshakes[][] so it is visible from regress/
ok bcook
Diffstat (limited to 'lib/libssl/tls13_handshake.c')
-rw-r--r-- | lib/libssl/tls13_handshake.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libssl/tls13_handshake.c b/lib/libssl/tls13_handshake.c index 95f30ded7d8..a93d5ea71f3 100644 --- a/lib/libssl/tls13_handshake.c +++ b/lib/libssl/tls13_handshake.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tls13_handshake.c,v 1.19 2019/01/21 14:19:51 jsing Exp $ */ +/* $OpenBSD: tls13_handshake.c,v 1.20 2019/01/23 04:25:18 tb Exp $ */ /* * Copyright (c) 2018-2019 Theo Buehler <tb@openbsd.org> * Copyright (c) 2019 Joel Sing <jsing@openbsd.org> @@ -149,7 +149,7 @@ struct tls13_handshake_action state_machine[] = { }, }; -static enum tls13_message_type handshakes[][TLS13_NUM_MESSAGE_TYPES] = { +enum tls13_message_type handshakes[][TLS13_NUM_MESSAGE_TYPES] = { [INITIAL] = { CLIENT_HELLO, SERVER_HELLO, |