From 4e543d473714b293166e5d081edd1157d4c00e41 Mon Sep 17 00:00:00 2001 From: tb <> Date: Fri, 10 Sep 2021 14:58:44 +0000 Subject: Move SSL_set0_rbio() outside of LIBRESSL_HAS_TLS1_3 ok inoguchi jsing --- src/lib/libssl/ssl.h | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'src/lib') diff --git a/src/lib/libssl/ssl.h b/src/lib/libssl/ssl.h index 7ed69467b6..5ba2b799e4 100644 --- a/src/lib/libssl/ssl.h +++ b/src/lib/libssl/ssl.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ssl.h,v 1.207 2021/09/10 14:55:53 tb Exp $ */ +/* $OpenBSD: ssl.h,v 1.208 2021/09/10 14:58:44 tb Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -1275,9 +1275,7 @@ int SSL_set_rfd(SSL *s, int fd); int SSL_set_wfd(SSL *s, int fd); void SSL_set_bio(SSL *s, BIO *rbio, BIO *wbio); BIO * SSL_get_rbio(const SSL *s); -#if defined(LIBRESSL_HAS_TLS1_3) || defined(LIBRESSL_INTERNAL) void SSL_set0_rbio(SSL *s, BIO *rbio); -#endif BIO * SSL_get_wbio(const SSL *s); int SSL_set_cipher_list(SSL *s, const char *str); #if defined(LIBRESSL_HAS_TLS1_3) || defined(LIBRESSL_INTERNAL) -- cgit v1.2.3-55-g6feb