diff options
author | Joel Sing <jsing@cvs.openbsd.org> | 2018-08-30 16:56:17 +0000 |
---|---|---|
committer | Joel Sing <jsing@cvs.openbsd.org> | 2018-08-30 16:56:17 +0000 |
commit | 0937866dec74e17f60cb53827acd9c1491efce5f (patch) | |
tree | 2122a97b51f527f71eb4dac1c1b6a2ba2961647f /lib/libssl/d1_clnt.c | |
parent | 304a58c92167b5774efc5ac68eb7c006b11ecb6b (diff) |
Nuke ssl_pending/ssl_shutdown function pointers.
ssl3_pending() is used for all protocols and dtls1_shutdown() just calls
ssl3_shutdown(), so just call the appropriate function directly instead.
ok beck@ inoguchi@ tb@
Diffstat (limited to 'lib/libssl/d1_clnt.c')
-rw-r--r-- | lib/libssl/d1_clnt.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/libssl/d1_clnt.c b/lib/libssl/d1_clnt.c index ee0e620ad80..8f60f4a8c48 100644 --- a/lib/libssl/d1_clnt.c +++ b/lib/libssl/d1_clnt.c @@ -1,4 +1,4 @@ -/* $OpenBSD: d1_clnt.c,v 1.80 2018/04/07 17:02:34 jsing Exp $ */ +/* $OpenBSD: d1_clnt.c,v 1.81 2018/08/30 16:56:16 jsing Exp $ */ /* * DTLS implementation written by Nagendra Modadugu * (nagendra@cs.stanford.edu) for the OpenSSL project 2005. @@ -136,8 +136,6 @@ static const SSL_METHOD_INTERNAL DTLSv1_client_method_internal_data = { .ssl_free = dtls1_free, .ssl_accept = ssl_undefined_function, .ssl_connect = ssl3_connect, - .ssl_shutdown = dtls1_shutdown, - .ssl_pending = ssl3_pending, .get_ssl_method = dtls1_get_client_method, .get_timeout = dtls1_default_timeout, .ssl_version = ssl_undefined_void_function, |