diff options
author | tb <> | 2022-01-14 07:59:32 +0000 |
---|---|---|
committer | tb <> | 2022-01-14 07:59:32 +0000 |
commit | 105a84b71464ec01d88787bb1ade6967370f099c (patch) | |
tree | 1f074de86f0317b70c87817f05d35516da6eab4d /src | |
parent | a9871b55b9a026f214ae984128906982db52af3b (diff) | |
download | openbsd-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.h | 5 |
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); | |||
600 | const BIO_METHOD *BIO_s_file(void); | 600 | const BIO_METHOD *BIO_s_file(void); |
601 | BIO *BIO_new_file(const char *filename, const char *mode); | 601 | BIO *BIO_new_file(const char *filename, const char *mode); |
602 | BIO *BIO_new_fp(FILE *stream, int close_flag); | 602 | BIO *BIO_new_fp(FILE *stream, int close_flag); |
603 | #ifndef LIBRESSL_INTERNAL | ||
604 | #define BIO_s_file_internal BIO_s_file | ||
605 | #endif | ||
606 | BIO *BIO_new(const BIO_METHOD *type); | 603 | BIO *BIO_new(const BIO_METHOD *type); |
607 | int BIO_set(BIO *a, const BIO_METHOD *type); | 604 | int BIO_set(BIO *a, const BIO_METHOD *type); |
608 | int BIO_free(BIO *a); | 605 | int BIO_free(BIO *a); |