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:
@@ -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 {
|
||||
|
Reference in New Issue
Block a user