]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
use compat macro for another PEM_read_bio_X509
authorDoug MacEachern <dougm@apache.org>
Wed, 27 Mar 2002 03:58:26 +0000 (03:58 +0000)
committerDoug MacEachern <dougm@apache.org>
Wed, 27 Mar 2002 03:58:26 +0000 (03:58 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@94214 13f79535-47bb-0310-9956-ffa450edef68

modules/ssl/ssl_util_ssl.c

index b16d3244809c8ca8baa9c6ebcceaf074f84e7b2e..594c11acb47fd5bc205afdc16bd74e65fdecd4ef 100644 (file)
@@ -116,7 +116,7 @@ X509 *SSL_read_X509(char* filename, X509 **x509, int (*cb)(char*,int,int,void*))
     /* 1. try PEM (= DER+Base64+headers) */
        if ((bioS=BIO_new_file(filename, "r")) == NULL)
                return NULL;
-       rc=PEM_read_bio_X509 (bioS, x509, cb, NULL);
+       rc=modssl_PEM_read_bio_X509 (bioS, x509, cb, NULL);
        BIO_free(bioS);
 
     if (rc == NULL) {