]> git.sur5r.net Git - openldap/commitdiff
Add a couple of FIXME comments
authorKurt Zeilenga <kurt@openldap.org>
Sat, 22 Dec 2001 19:21:32 +0000 (19:21 +0000)
committerKurt Zeilenga <kurt@openldap.org>
Sat, 22 Dec 2001 19:21:32 +0000 (19:21 +0000)
servers/slapd/schema_init.c

index 5b04f2920d32ac118800e062c5ccbbd0f67a4054..bab88690c1e8996a87a6181bcdac5877666f3908 100644 (file)
@@ -791,6 +791,7 @@ nameUIDValidate(
                dn->bv_val[i-2] = '\0';
        }
 
+       /* FIXME: should use dnValidate */
        rc = dn_validate( dn->bv_val ) == NULL
                ? LDAP_INVALID_SYNTAX : LDAP_SUCCESS;
 
@@ -826,6 +827,7 @@ nameUIDNormalize(
                        *uid = '\0';
                }
 
+               /* FIXME: should use dnNormalize */
 #ifdef USE_DN_NORMALIZE
                dn = dn_normalize( out->bv_val );
 #else