diff options
author | 2015-09-01 13:38:27 +0000 | |
---|---|---|
committer | 2015-09-01 13:38:27 +0000 | |
commit | 3f38b3212cde555a84fd30e09163576e6a59932c (patch) | |
tree | fcc8afce67847f69125511993112f74608329a43 /lib/libssl/t1_lib.c | |
parent | Make it always safe to call CBB_cleanup() providing that CBB_init() or (diff) | |
download | wireguard-openbsd-3f38b3212cde555a84fd30e09163576e6a59932c.tar.xz wireguard-openbsd-3f38b3212cde555a84fd30e09163576e6a59932c.zip |
Remove the ssl_prepare_{client,server}hello_tlsext() functions, which are
now nothing more than noops.
ok bcook@ doug@
Diffstat (limited to 'lib/libssl/t1_lib.c')
-rw-r--r-- | lib/libssl/t1_lib.c | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/lib/libssl/t1_lib.c b/lib/libssl/t1_lib.c index b892fa9b914..fc54fe1e6dd 100644 --- a/lib/libssl/t1_lib.c +++ b/lib/libssl/t1_lib.c @@ -1,4 +1,4 @@ -/* $OpenBSD: t1_lib.c,v 1.83 2015/08/19 23:34:34 bcook Exp $ */ +/* $OpenBSD: t1_lib.c,v 1.84 2015/09/01 13:38:27 jsing Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -1830,18 +1830,6 @@ ri_check: } int -ssl_prepare_clienthello_tlsext(SSL *s) -{ - return 1; -} - -int -ssl_prepare_serverhello_tlsext(SSL *s) -{ - return 1; -} - -int ssl_check_clienthello_tlsext_early(SSL *s) { int ret = SSL_TLSEXT_ERR_NOACK; |