aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/x509
diff options
context:
space:
mode:
authorRich Salz <rsalz@akamai.com>2015-09-30 14:32:49 -0400
committerRich Salz <rsalz@openssl.org>2015-10-02 14:22:05 -0400
commit9982cbbbf65473418661f5aa1f05e7ef88ada801 (patch)
tree7cc0e6c10dcd5ec1d8c2c8538ac9c0cebea919da /crypto/x509
parent57e4e926da904677be06d29c4c756303be8293b0 (diff)
downloadopenssl-9982cbbbf65473418661f5aa1f05e7ef88ada801.tar.gz
Remove BIO_s_file_internal macro.
Reviewed-by: Richard Levitte <levitte@openssl.org>
Diffstat (limited to 'crypto/x509')
-rw-r--r--crypto/x509/by_file.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/x509/by_file.c b/crypto/x509/by_file.c
index 7983b1527e..8a156c7422 100644
--- a/crypto/x509/by_file.c
+++ b/crypto/x509/by_file.c
@@ -129,7 +129,7 @@ int X509_load_cert_file(X509_LOOKUP *ctx, const char *file, int type)
if (file == NULL)
return (1);
- in = BIO_new(BIO_s_file_internal());
+ in = BIO_new(BIO_s_file());
if ((in == NULL) || (BIO_read_filename(in, file) <= 0)) {
X509err(X509_F_X509_LOAD_CERT_FILE, ERR_R_SYS_LIB);
@@ -186,7 +186,7 @@ int X509_load_crl_file(X509_LOOKUP *ctx, const char *file, int type)
if (file == NULL)
return (1);
- in = BIO_new(BIO_s_file_internal());
+ in = BIO_new(BIO_s_file());
if ((in == NULL) || (BIO_read_filename(in, file) <= 0)) {
X509err(X509_F_X509_LOAD_CRL_FILE, ERR_R_SYS_LIB);