1
0
mirror of https://github.com/apache/httpd.git synced 2025-08-08 15:02:10 +03:00

mod_ssl namespacing: SSL_X509_NAME_to_string -> modssl_X509_NAME_to_string

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1677153 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Stefan Sperling
2015-05-01 14:34:38 +00:00
parent e3f338ec3d
commit 1e4c1e7fd2
5 changed files with 8 additions and 8 deletions

View File

@@ -141,8 +141,8 @@ static void ssl_log_cert_error(const char *file, int line, int level,
int maxdnlen = (HUGE_STRING_LEN - msglen - 300) / 2;
BIO_puts(bio, " [subject: ");
name = SSL_X509_NAME_to_string(p, X509_get_subject_name(cert),
maxdnlen);
name = modssl_X509_NAME_to_string(p, X509_get_subject_name(cert),
maxdnlen);
if (!strIsEmpty(name)) {
BIO_puts(bio, name);
} else {
@@ -150,8 +150,8 @@ static void ssl_log_cert_error(const char *file, int line, int level,
}
BIO_puts(bio, " / issuer: ");
name = SSL_X509_NAME_to_string(p, X509_get_issuer_name(cert),
maxdnlen);
name = modssl_X509_NAME_to_string(p, X509_get_issuer_name(cert),
maxdnlen);
if (!strIsEmpty(name)) {
BIO_puts(bio, name);
} else {