summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorTheo Buehler <tb@cvs.openbsd.org>2022-01-14 07:59:33 +0000
committerTheo Buehler <tb@cvs.openbsd.org>2022-01-14 07:59:33 +0000
commitd6445b6577970f3a676c5ced6ab2436d5023782a (patch)
treee2a9c013d7c3a7511dbdb4e4bb44bb7647d80075 /lib
parent2c9c689464ec9a3c473e1bcdc45379ce09d35ba6 (diff)
Remove BIO_s_file_internal
Pointed out by schwarze. How something with this name ever made its way into a public header will remain a mystery. ok inoguchi jsing
Diffstat (limited to 'lib')
-rw-r--r--lib/libcrypto/bio/bio.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/lib/libcrypto/bio/bio.h b/lib/libcrypto/bio/bio.h
index d715deb2eb4..47e7baf205a 100644
--- a/lib/libcrypto/bio/bio.h
+++ b/lib/libcrypto/bio/bio.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: bio.h,v 1.51 2022/01/14 07:49:49 tb Exp $ */
+/* $OpenBSD: bio.h,v 1.52 2022/01/14 07:59:32 tb Exp $ */
/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
* All rights reserved.
*
@@ -600,9 +600,6 @@ int BIO_get_new_index(void);
const BIO_METHOD *BIO_s_file(void);
BIO *BIO_new_file(const char *filename, const char *mode);
BIO *BIO_new_fp(FILE *stream, int close_flag);
-#ifndef LIBRESSL_INTERNAL
-#define BIO_s_file_internal BIO_s_file
-#endif
BIO *BIO_new(const BIO_METHOD *type);
int BIO_set(BIO *a, const BIO_METHOD *type);
int BIO_free(BIO *a);