diff options
author | 2017-01-22 07:16:38 +0000 | |
---|---|---|
committer | 2017-01-22 07:16:38 +0000 | |
commit | f7271532151d495f01d630a2c982761e61cd34c1 (patch) | |
tree | 4c292bc1fa0796d599413ddca8da2bc414223813 /lib/libssl/ssl_lib.c | |
parent | Always provide clang as cc, c++ and cpp, and lld as ld. (diff) | |
download | wireguard-openbsd-f7271532151d495f01d630a2c982761e61cd34c1.tar.xz wireguard-openbsd-f7271532151d495f01d630a2c982761e61cd34c1.zip |
Move most of DTLS1_STATE to internal.
ok jsing@
Diffstat (limited to 'lib/libssl/ssl_lib.c')
-rw-r--r-- | lib/libssl/ssl_lib.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libssl/ssl_lib.c b/lib/libssl/ssl_lib.c index 7031c91e1c3..50c764ae868 100644 --- a/lib/libssl/ssl_lib.c +++ b/lib/libssl/ssl_lib.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ssl_lib.c,v 1.127 2017/01/22 06:36:49 jsing Exp $ */ +/* $OpenBSD: ssl_lib.c,v 1.128 2017/01/22 07:16:39 beck Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -1078,7 +1078,7 @@ SSL_ctrl(SSL *s, int cmd, long larg, void *parg) return (0); #endif if (SSL_IS_DTLS(s)) { - s->d1->mtu = larg; + D1I(s)->mtu = larg; return (larg); } return (0); |