summaryrefslogtreecommitdiffstats
path: root/lib/libssl/ssl_both.c
diff options
context:
space:
mode:
authorbeck <beck@openbsd.org>2017-05-06 22:24:57 +0000
committerbeck <beck@openbsd.org>2017-05-06 22:24:57 +0000
commit4de66e6c872696cf275112b1fa992f5337a3565c (patch)
tree8ad7826358c6fdb70f8a3338ec81f89b4366701b /lib/libssl/ssl_both.c
parentMove TLS test code into a function that is called from main, making it (diff)
downloadwireguard-openbsd-4de66e6c872696cf275112b1fa992f5337a3565c.tar.xz
wireguard-openbsd-4de66e6c872696cf275112b1fa992f5337a3565c.zip
Bring in an SSL_HANDSHAKE structure and commence the great shovelling
ok jsing@, gcc@, regress@
Diffstat (limited to 'lib/libssl/ssl_both.c')
-rw-r--r--lib/libssl/ssl_both.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libssl/ssl_both.c b/lib/libssl/ssl_both.c
index d1a0879b729..13c39e85b2d 100644
--- a/lib/libssl/ssl_both.c
+++ b/lib/libssl/ssl_both.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ssl_both.c,v 1.7 2017/03/05 14:24:12 jsing Exp $ */
+/* $OpenBSD: ssl_both.c,v 1.8 2017/05/06 22:24:57 beck Exp $ */
/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
* All rights reserved.
*
@@ -224,7 +224,7 @@ ssl3_take_mac(SSL *s)
* If no new cipher setup return immediately: other functions will
* set the appropriate error.
*/
- if (S3I(s)->tmp.new_cipher == NULL)
+ if (S3I(s)->hs.new_cipher == NULL)
return;
if (s->internal->state & SSL_ST_CONNECT) {