summaryrefslogtreecommitdiffstats
path: root/modules/ssl/ssl_util_ocsp.c
diff options
context:
space:
mode:
authorWilliam A. Rowe Jr <wrowe@apache.org>2017-02-16 22:26:34 +0100
committerWilliam A. Rowe Jr <wrowe@apache.org>2017-02-16 22:26:34 +0100
commit561b273ca855fe3549d95eb07b020a9058205579 (patch)
tree9a54709469208fe61a0a9ea5332fe7783bece9fc /modules/ssl/ssl_util_ocsp.c
parentSave a few bytes in the request pool. (diff)
downloadapache2-561b273ca855fe3549d95eb07b020a9058205579.tar.xz
apache2-561b273ca855fe3549d95eb07b020a9058205579.zip
Fix OpenSSL 1.1.0 breakage in r1781575; BIO_s_file_internal() is gone.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1783305 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '')
-rw-r--r--modules/ssl/ssl_util_ocsp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/ssl/ssl_util_ocsp.c b/modules/ssl/ssl_util_ocsp.c
index bf84ba5687..b11a6e924e 100644
--- a/modules/ssl/ssl_util_ocsp.c
+++ b/modules/ssl/ssl_util_ocsp.c
@@ -357,7 +357,7 @@ static STACK_OF(X509) *modssl_read_ocsp_certificates(const char *file)
unsigned long err;
STACK_OF(X509) *other_certs = NULL;
- if ((bio = BIO_new(BIO_s_file_internal())) == NULL)
+ if ((bio = BIO_new(BIO_s_file())) == NULL)
return NULL;
if (BIO_read_filename(bio, file) <= 0) {
BIO_free(bio);