diff options
author | 2017-01-23 13:36:12 +0000 | |
---|---|---|
committer | 2017-01-23 13:36:12 +0000 | |
commit | 9eac7899ed76d83aff808c8376c1d53fc748541a (patch) | |
tree | 571d929db113cf5cd0463ab8d85cada655a140f1 /lib/libssl/d1_lib.c | |
parent | _end should be on a 64-bit boundary, so make sure to align (diff) | |
download | wireguard-openbsd-9eac7899ed76d83aff808c8376c1d53fc748541a.tar.xz wireguard-openbsd-9eac7899ed76d83aff808c8376c1d53fc748541a.zip |
Split most of SSL_METHOD out into an internal variant, which is opaque.
Discussed with beck@
Diffstat (limited to 'lib/libssl/d1_lib.c')
-rw-r--r-- | lib/libssl/d1_lib.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libssl/d1_lib.c b/lib/libssl/d1_lib.c index 697cb434f7a..e8c3b107618 100644 --- a/lib/libssl/d1_lib.c +++ b/lib/libssl/d1_lib.c @@ -1,4 +1,4 @@ -/* $OpenBSD: d1_lib.c,v 1.36 2017/01/22 07:16:38 beck Exp $ */ +/* $OpenBSD: d1_lib.c,v 1.37 2017/01/23 13:36:13 jsing Exp $ */ /* * DTLS implementation written by Nagendra Modadugu * (nagendra@cs.stanford.edu) for the OpenSSL project 2005. @@ -141,7 +141,7 @@ dtls1_new(SSL *s) } s->d1 = d1; - s->method->ssl_clear(s); + s->method->internal->ssl_clear(s); return (1); } |