summaryrefslogtreecommitdiff
path: root/src/lib
diff options
context:
space:
mode:
authortb <>2019-01-20 06:40:55 +0000
committertb <>2019-01-20 06:40:55 +0000
commit286245a37ad22098035305429d59dd2ba6959084 (patch)
tree59aaf43bc7b08e655b7dfb6b89fc271fbe8b95ed /src/lib
parent637e91631f237b9531ec250d29bcbfd3cb41577a (diff)
downloadopenbsd-286245a37ad22098035305429d59dd2ba6959084.tar.gz
openbsd-286245a37ad22098035305429d59dd2ba6959084.tar.bz2
openbsd-286245a37ad22098035305429d59dd2ba6959084.zip
revert second hunk of previous that was committed by accident
Diffstat (limited to 'src/lib')
-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 3b4aa04f87..bec55d8416 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.13 2019/01/20 06:38:18 tb Exp $ */ 1/* $OpenBSD: tls13_handshake.c,v 1.14 2019/01/20 06:40:55 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>
@@ -160,7 +160,7 @@ struct tls13_handshake_action state_machine[] = {
160 }, 160 },
161 [APPLICATION_DATA] = { 161 [APPLICATION_DATA] = {
162 .record_type = TLS13_APPLICATION_DATA, 162 .record_type = TLS13_APPLICATION_DATA,
163 .handshake_complete = 0, 163 .handshake_complete = 1,
164 }, 164 },
165}; 165};
166 166