summaryrefslogtreecommitdiffstats
path: root/usr.sbin/httpd/src/modules/ssl/ssl_engine_ext.c
diff options
context:
space:
mode:
authorbeck <beck@openbsd.org>2002-03-29 02:08:03 +0000
committerbeck <beck@openbsd.org>2002-03-29 02:08:03 +0000
commit44cdba531db40e5069beac4c7827aecc4660aad9 (patch)
tree1f01b6793ed738e6bce4bce8e9ba92bf096dc80d /usr.sbin/httpd/src/modules/ssl/ssl_engine_ext.c
parentprototype pfctl_kill_states() (diff)
downloadwireguard-openbsd-44cdba531db40e5069beac4c7827aecc4660aad9.tar.xz
wireguard-openbsd-44cdba531db40e5069beac4c7827aecc4660aad9.zip
fix half baked abortion of a merge to 1.3.23 and take
tree to apache-1.3.24+mod+ssl2.8.8
Diffstat (limited to 'usr.sbin/httpd/src/modules/ssl/ssl_engine_ext.c')
-rw-r--r--usr.sbin/httpd/src/modules/ssl/ssl_engine_ext.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/httpd/src/modules/ssl/ssl_engine_ext.c b/usr.sbin/httpd/src/modules/ssl/ssl_engine_ext.c
index 81b283ce402..13b1e513478 100644
--- a/usr.sbin/httpd/src/modules/ssl/ssl_engine_ext.c
+++ b/usr.sbin/httpd/src/modules/ssl/ssl_engine_ext.c
@@ -620,7 +620,7 @@ static int ssl_ext_mp_clientcert_cb(SSL *ssl, X509 **x509, EVP_PKEY **pkey)
* so lets send the first one we came across
*/
xi = sk_X509_INFO_value(pcerts, 0);
- cp = X509_NAME_oneline(X509_get_subject_name(xi->x509), NULL, 0);
+ cp = X509_NAME_oneline(X509_get_subject_name(xi->x509), NULL, 0);
ssl_log(s, SSL_LOG_DEBUG,
"SSL Proxy: (%s) no acceptable CA list, sending %s",
servername, cp != NULL ? cp : "-unknown-");