summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authortb <>2022-01-14 07:59:32 +0000
committertb <>2022-01-14 07:59:32 +0000
commit105a84b71464ec01d88787bb1ade6967370f099c (patch)
tree1f074de86f0317b70c87817f05d35516da6eab4d /src
parenta9871b55b9a026f214ae984128906982db52af3b (diff)
downloadopenbsd-105a84b71464ec01d88787bb1ade6967370f099c.tar.gz
openbsd-105a84b71464ec01d88787bb1ade6967370f099c.tar.bz2
openbsd-105a84b71464ec01d88787bb1ade6967370f099c.zip
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 'src')
-rw-r--r--src/lib/libcrypto/bio/bio.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/lib/libcrypto/bio/bio.h b/src/lib/libcrypto/bio/bio.h
index d715deb2eb..47e7baf205 100644
--- a/src/lib/libcrypto/bio/bio.h
+++ b/src/lib/libcrypto/bio/bio.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: bio.h,v 1.51 2022/01/14 07:49:49 tb Exp $ */ 1/* $OpenBSD: bio.h,v 1.52 2022/01/14 07:59:32 tb Exp $ */
2/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) 2/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
3 * All rights reserved. 3 * All rights reserved.
4 * 4 *
@@ -600,9 +600,6 @@ int BIO_get_new_index(void);
600const BIO_METHOD *BIO_s_file(void); 600const BIO_METHOD *BIO_s_file(void);
601BIO *BIO_new_file(const char *filename, const char *mode); 601BIO *BIO_new_file(const char *filename, const char *mode);
602BIO *BIO_new_fp(FILE *stream, int close_flag); 602BIO *BIO_new_fp(FILE *stream, int close_flag);
603#ifndef LIBRESSL_INTERNAL
604#define BIO_s_file_internal BIO_s_file
605#endif
606BIO *BIO_new(const BIO_METHOD *type); 603BIO *BIO_new(const BIO_METHOD *type);
607int BIO_set(BIO *a, const BIO_METHOD *type); 604int BIO_set(BIO *a, const BIO_METHOD *type);
608int BIO_free(BIO *a); 605int BIO_free(BIO *a);