]> granicus.if.org Git - apache/commitdiff
SSL_SESSION_id2sz is only used for logging, having it in lowercase shouldn't be an...
authorChristophe Jaillet <jailletc36@apache.org>
Fri, 1 Mar 2013 06:49:45 +0000 (06:49 +0000)
committerChristophe Jaillet <jailletc36@apache.org>
Fri, 1 Mar 2013 06:49:45 +0000 (06:49 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1451484 13f79535-47bb-0310-9956-ffa450edef68

modules/ssl/ssl_util_ssl.c

index c0096011c1d9d9ecc6a7dd649183fce67aa46f13..a8c36adb47edc54c78e5ed0ed0bc0caf8dd741eb 100644 (file)
@@ -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;
 }