summaryrefslogtreecommitdiffstats
path: root/usr.sbin/httpd/src/modules/ssl/ssl_util_ssl.c
diff options
context:
space:
mode:
authorhenning <henning@openbsd.org>2004-12-02 19:42:46 +0000
committerhenning <henning@openbsd.org>2004-12-02 19:42:46 +0000
commitbeb894e9112853f8ec6191dfabc17833945d5384 (patch)
treeb54efe18b2c59c6e8b8e7c957cc8c0be1793f8cd /usr.sbin/httpd/src/modules/ssl/ssl_util_ssl.c
parentWe do not support 2MB machines, so don't bother taking them into account (diff)
downloadwireguard-openbsd-beb894e9112853f8ec6191dfabc17833945d5384.tar.xz
wireguard-openbsd-beb894e9112853f8ec6191dfabc17833945d5384.zip
big time httpd cleanup
this diff removes a lot of #ifdef'd stuff that is irrelevant for us. done by Daniel Ouellet after my advice. tested by many, ok miod@
Diffstat (limited to 'usr.sbin/httpd/src/modules/ssl/ssl_util_ssl.c')
-rw-r--r--usr.sbin/httpd/src/modules/ssl/ssl_util_ssl.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/usr.sbin/httpd/src/modules/ssl/ssl_util_ssl.c b/usr.sbin/httpd/src/modules/ssl/ssl_util_ssl.c
index 543680890cc..9cf8a063220 100644
--- a/usr.sbin/httpd/src/modules/ssl/ssl_util_ssl.c
+++ b/usr.sbin/httpd/src/modules/ssl/ssl_util_ssl.c
@@ -384,9 +384,6 @@ BOOL SSL_X509_getCN(pool *p, X509 *xs, char **cppCN)
*cppCN = ap_palloc(p, xsne->value->length+1);
ap_cpystrn(*cppCN, (char *)xsne->value->data, xsne->value->length+1);
(*cppCN)[xsne->value->length] = NUL;
-#ifdef CHARSET_EBCDIC
- ascii2ebcdic(*cppCN, *cppCN, strlen(*cppCN));
-#endif
return TRUE;
}
}