summaryrefslogtreecommitdiffstats
path: root/lib/libssl/ssl_lib.c
diff options
context:
space:
mode:
authormiod <miod@openbsd.org>2014-06-13 04:29:13 +0000
committermiod <miod@openbsd.org>2014-06-13 04:29:13 +0000
commitd0eebffa6276f45fb0db91c36d104704cd8ac54b (patch)
tree712b65430df2667b20028ce7e1c0243a7a7e6d5d /lib/libssl/ssl_lib.c
parentsync (diff)
downloadwireguard-openbsd-d0eebffa6276f45fb0db91c36d104704cd8ac54b.tar.xz
wireguard-openbsd-d0eebffa6276f45fb0db91c36d104704cd8ac54b.zip
Remove support for the `opaque PRF input' extension, which draft has expired
7 years ago and never made it into an RFC. That code wasn't compiled in anyway unless one would define the actual on-the-wire extension id bytes; crank libssl major. With help and enlightenment from Brendan MacDonell.
Diffstat (limited to 'lib/libssl/ssl_lib.c')
-rw-r--r--lib/libssl/ssl_lib.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/libssl/ssl_lib.c b/lib/libssl/ssl_lib.c
index 54b737d482e..05abdb3944d 100644
--- a/lib/libssl/ssl_lib.c
+++ b/lib/libssl/ssl_lib.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ssl_lib.c,v 1.65 2014/06/12 15:49:31 deraadt Exp $ */
+/* $OpenBSD: ssl_lib.c,v 1.66 2014/06/13 04:29:13 miod Exp $ */
/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
* All rights reserved.
*
@@ -536,7 +536,6 @@ SSL_free(SSL *s)
SSL_CTX_free(s->initial_ctx);
free(s->tlsext_ecpointformatlist);
free(s->tlsext_ellipticcurvelist);
- free(s->tlsext_opaque_prf_input);
if (s->tlsext_ocsp_exts)
sk_X509_EXTENSION_pop_free(s->tlsext_ocsp_exts,
X509_EXTENSION_free);