From a5013a63436a3abe6f64ab3fcbbf2c46c69cc01a Mon Sep 17 00:00:00 2001 From: tb Date: Fri, 10 Sep 2021 14:58:44 +0000 Subject: [PATCH] Move SSL_set0_rbio() outside of LIBRESSL_HAS_TLS1_3 ok inoguchi jsing --- lib/libssl/ssl.h | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/lib/libssl/ssl.h b/lib/libssl/ssl.h index 7ed69467b62..5ba2b799e41 100644 --- a/lib/libssl/ssl.h +++ b/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) -- 2.20.1