]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
out with
authorJeff Trawick <trawick@apache.org>
Fri, 2 Nov 2007 01:19:32 +0000 (01:19 +0000)
committerJeff Trawick <trawick@apache.org>
Fri, 2 Nov 2007 01:19:32 +0000 (01:19 +0000)
              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

STATUS

diff --git a/STATUS b/STATUS
index 1d73b2c93ca766eb92f168a3d48176b94748a316..2cf2325cdd60cc9eed3dd590bd2200a0d4e980e5 100644 (file)
--- a/STATUS
+++ b/STATUS
@@ -249,6 +249,15 @@ PATCHES PROPOSED TO BACKPORT FROM TRUNK:
           space for the NUL, but they don't have related sections
           which assume a set size; this does (AP_IOBUFSIZE).
 
+   * EBCDIC fix to mod_authnz_ldap AUTHENTICATE_foo variables
+     trunk:
+       http://svn.apache.org/viewvc?view=rev&revision=571798
+     2.2.x patch:
+         Unrelated changes which either don't apply or rely on 
+         a definition in mod_auth.h have been omitted.
+       http://people.apache.org/~trawick/ldap_toupper.txt
+     +1: trawick
+
 PATCHES/ISSUES THAT ARE STALLED
 
     * mod_ldap, mod_authnzldap: Add support for nested groups (i.e. the ability