diff options
author | 2020-09-15 09:41:24 +0000 | |
---|---|---|
committer | 2020-09-15 09:41:24 +0000 | |
commit | 57188f9594946ecd9d09bd6ed8817742002bbb98 (patch) | |
tree | d47066da8f5eda9165627d81c06c25577413cff3 /lib/libssl/ssl_locl.h | |
parent | oops incomplete variable rename prevented compile, hit by sthen (diff) | |
download | wireguard-openbsd-57188f9594946ecd9d09bd6ed8817742002bbb98.tar.xz wireguard-openbsd-57188f9594946ecd9d09bd6ed8817742002bbb98.zip |
Mop up the get_ssl_method function pointer.
Now that get_ssl_method is no longer used, we can garbage collect the
function pointer and some associated machinery.
ok beck@
Diffstat (limited to 'lib/libssl/ssl_locl.h')
-rw-r--r-- | lib/libssl/ssl_locl.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/libssl/ssl_locl.h b/lib/libssl/ssl_locl.h index 540afee004f..4ac6b76cd37 100644 --- a/lib/libssl/ssl_locl.h +++ b/lib/libssl/ssl_locl.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ssl_locl.h,v 1.291 2020/09/13 16:49:05 jsing Exp $ */ +/* $OpenBSD: ssl_locl.h,v 1.292 2020/09/15 09:41:24 jsing Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -383,8 +383,6 @@ typedef struct ssl_method_internal_st { int peek); int (*ssl_write_bytes)(SSL *s, int type, const void *buf_, int len); - const struct ssl_method_st *(*get_ssl_method)(int version); - struct ssl3_enc_method *ssl3_enc; /* Extra SSLv3/TLS stuff */ } SSL_METHOD_INTERNAL; |