summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristophe Jaillet <jailletc36@apache.org>2013-03-01 07:49:45 +0100
committerChristophe Jaillet <jailletc36@apache.org>2013-03-01 07:49:45 +0100
commitfdce96c6f1003dc69cc10d3b5a25455d0b211bab (patch)
tree5ec5a519d36cd85650bdb7f6550ee4ba927b9a32
parentAvoid some memory allocation on error path in 'http2env' if TRACE1 logging is... (diff)
downloadapache2-fdce96c6f1003dc69cc10d3b5a25455d0b211bab.tar.xz
apache2-fdce96c6f1003dc69cc10d3b5a25455d0b211bab.zip
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
-rw-r--r--modules/ssl/ssl_util_ssl.c2
1 files changed, 0 insertions, 2 deletions
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;
}