From: Christophe Jaillet Date: Fri, 1 Mar 2013 06:49:45 +0000 (+0000) Subject: SSL_SESSION_id2sz is only used for logging, having it in lowercase shouldn't be an... X-Git-Tag: 2.5.0-alpha~5725 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=fdce96c6f1003dc69cc10d3b5a25455d0b211bab;p=apache SSL_SESSION_id2sz is only used for logging, having it in lowercase shouldn't be an issue. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1451484 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/ssl/ssl_util_ssl.c b/modules/ssl/ssl_util_ssl.c index c0096011c1..a8c36adb47 100644 --- a/modules/ssl/ssl_util_ssl.c +++ b/modules/ssl/ssl_util_ssl.c @@ -564,8 +564,6 @@ char *SSL_SESSION_id2sz(unsigned char *id, int idlen, idlen = (strsize-1) / 2; ap_bin2hex(id, idlen, str); - /* XXX: is this ap_str_toupper() necessary ? */ - ap_str_toupper(str); return str; }