Commit 02470793 authored by Jeff Trawick's avatar Jeff Trawick
Browse files

out with

              if (str[j] >= 'a' && str[j] <= 'z') {
                  str[j] = str[j] - ('a' - 'A');
              }

in with

              str[j] = apr_toupper(str[j]);


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@591184 13f79535-47bb-0310-9956-ffa450edef68
parent 0b8b29bb
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment