]> git.sur5r.net Git - openldap/commitdiff
BootParamSyntax: be more liberal than the ABNF such that
authorKurt Zeilenga <kurt@openldap.org>
Wed, 24 Jul 2002 15:29:22 +0000 (15:29 +0000)
committerKurt Zeilenga <kurt@openldap.org>
Wed, 24 Jul 2002 15:29:22 +0000 (15:29 +0000)
examples in RFC 2307 are treated as valid.

servers/slapd/schema_init.c

index 4063319636ff3c504dfcd2fbacbe9d82c9f845c4..4e8ac815f89ddbca06df111e1f86e83718c8cfd8 100644 (file)
@@ -4116,7 +4116,7 @@ bootParameterValidate(
 
        /* path */
        for ( p++; p < e; p++ ) {
-               if ( !AD_CHAR( *p ) ) {
+               if ( !SLAP_PRINTABLE( *p ) ) {
                        return LDAP_INVALID_SYNTAX;
                }
        }