diff options
author | 2020-01-22 02:34:39 +0000 | |
---|---|---|
committer | 2020-01-22 02:34:39 +0000 | |
commit | df62dce5d1984bf3c43ad497bd22d70c17f3f8d8 (patch) | |
tree | f74500c6d0b876430a702c30c742fb35df42e664 /lib/libssl/ssl_methods.c | |
parent | factor out parsing of allowed-signers lines (diff) | |
download | wireguard-openbsd-df62dce5d1984bf3c43ad497bd22d70c17f3f8d8.tar.xz wireguard-openbsd-df62dce5d1984bf3c43ad497bd22d70c17f3f8d8.zip |
Hook up the TLSv1.3 legacy shutdown code.
Missed in an earlier commit.
Diffstat (limited to 'lib/libssl/ssl_methods.c')
-rw-r--r-- | lib/libssl/ssl_methods.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libssl/ssl_methods.c b/lib/libssl/ssl_methods.c index 33d2d7654d2..8e544f6e936 100644 --- a/lib/libssl/ssl_methods.c +++ b/lib/libssl/ssl_methods.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ssl_methods.c,v 1.6 2020/01/22 01:21:43 jsing Exp $ */ +/* $OpenBSD: ssl_methods.c,v 1.7 2020/01/22 02:34:39 jsing Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -221,7 +221,7 @@ static const SSL_METHOD_INTERNAL TLS_client_method_internal_data = { .ssl_free = tls1_free, .ssl_accept = ssl_undefined_function, .ssl_connect = tls13_legacy_connect, - .ssl_shutdown = ssl3_shutdown, + .ssl_shutdown = tls13_legacy_shutdown, .get_ssl_method = tls1_get_client_method, .get_timeout = tls1_default_timeout, .ssl_version = ssl_undefined_void_function, |