You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by ic...@apache.org on 2015/12/18 17:07:04 UTC

svn commit: r1720819 - in /httpd/httpd/trunk/modules/http2: h2_util.c h2_util.h

Author: icing
Date: Fri Dec 18 16:07:04 2015
New Revision: 1720819

URL: http://svn.apache.org/viewvc?rev=1720819&view=rev
Log:
removed no longer used h2_strlwr() dinosaur

Modified:
    httpd/httpd/trunk/modules/http2/h2_util.c
    httpd/httpd/trunk/modules/http2/h2_util.h

Modified: httpd/httpd/trunk/modules/http2/h2_util.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/http2/h2_util.c?rev=1720819&r1=1720818&r2=1720819&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/http2/h2_util.c (original)
+++ httpd/httpd/trunk/modules/http2/h2_util.c Fri Dec 18 16:07:04 2015
@@ -64,17 +64,6 @@ size_t h2_util_header_print(char *buffer
 }
 
 
-char *h2_strlwr(char *s)
-{
-    char *p;
-    for (p = s; *p; ++p) {
-        if (*p >= 'A' && *p <= 'Z') {
-            *p += 'a' - 'A';
-        }
-    }
-    return s;
-}
-
 void h2_util_camel_case_header(char *s, size_t len)
 {
     size_t start = 1;

Modified: httpd/httpd/trunk/modules/http2/h2_util.h
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/http2/h2_util.h?rev=1720819&r1=1720818&r2=1720819&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/http2/h2_util.h (original)
+++ httpd/httpd/trunk/modules/http2/h2_util.h Fri Dec 18 16:07:04 2015
@@ -26,8 +26,6 @@ size_t h2_util_header_print(char *buffer
                             const char *name, size_t namelen,
                             const char *value, size_t valuelen);
 
-char *h2_strlwr(char *s);
-
 void h2_util_camel_case_header(char *s, size_t len);
 
 int h2_req_ignore_header(const char *name, size_t len);