diff options
author | Joel Sing <jsing@cvs.openbsd.org> | 2017-01-23 04:15:29 +0000 |
---|---|---|
committer | Joel Sing <jsing@cvs.openbsd.org> | 2017-01-23 04:15:29 +0000 |
commit | bde20253e45fea68b8d63c44aa7a0fd8355cd540 (patch) | |
tree | 8837e9a0028add131bbb8d52c275b9616f1d4b33 /lib/libssl/d1_clnt.c | |
parent | 0b2a792eec6d9b4d40d89e587a7317a33900da47 (diff) |
Move callback function pointers and argument pointers from SSL_CTX to
internal.
ok beck@
Diffstat (limited to 'lib/libssl/d1_clnt.c')
-rw-r--r-- | lib/libssl/d1_clnt.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libssl/d1_clnt.c b/lib/libssl/d1_clnt.c index 71cd845ac69..127cda155c1 100644 --- a/lib/libssl/d1_clnt.c +++ b/lib/libssl/d1_clnt.c @@ -1,4 +1,4 @@ -/* $OpenBSD: d1_clnt.c,v 1.63 2017/01/23 00:12:54 jsing Exp $ */ +/* $OpenBSD: d1_clnt.c,v 1.64 2017/01/23 04:15:28 jsing Exp $ */ /* * DTLS implementation written by Nagendra Modadugu * (nagendra@cs.stanford.edu) for the OpenSSL project 2005. @@ -190,8 +190,8 @@ dtls1_connect(SSL *s) if (s->info_callback != NULL) cb = s->info_callback; - else if (s->ctx->info_callback != NULL) - cb = s->ctx->info_callback; + else if (s->ctx->internal->info_callback != NULL) + cb = s->ctx->internal->info_callback; s->in_handshake++; if (!SSL_in_init(s) || SSL_in_before(s)) |