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-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c337052988b24596107327b3e589d7d3391076e6;p=thirdparty%2Fapache%2Fhttpd.git 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 c0096011c1d..a8c36adb47e 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; }