From: Stefan Fritsch Date: Sun, 2 Jan 2011 18:34:17 +0000 (+0000) Subject: Fix EBCDIC related cut'n'paste error X-Git-Tag: 2.3.11~285 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=86a2e138ca6adb79ee6226d6cb9ac28320783abb;p=thirdparty%2Fapache%2Fhttpd.git Fix EBCDIC related cut'n'paste error git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1054453 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/ssl/ssl_util_ssl.c b/modules/ssl/ssl_util_ssl.c index 722ab01f6ca..62cd0de3839 100644 --- a/modules/ssl/ssl_util_ssl.c +++ b/modules/ssl/ssl_util_ssl.c @@ -360,7 +360,7 @@ char *SSL_X509_NAME_ENTRY_to_string(apr_pool_t *p, X509_NAME_ENTRY *xsne) len = BIO_read(bio, result, len); result[len] = NUL; BIO_free(bio); - ap_xlate_proto_from_ascii(value, len); + ap_xlate_proto_from_ascii(result, len); return result; }