From: Kurt Zeilenga Date: Wed, 24 Jul 2002 15:29:22 +0000 (+0000) Subject: BootParamSyntax: be more liberal than the ABNF such that X-Git-Tag: NO_SLAP_OP_BLOCKS~1344 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=4d22977f7f7216987094b238c32dfb9790634084;p=openldap BootParamSyntax: be more liberal than the ABNF such that examples in RFC 2307 are treated as valid. --- diff --git a/servers/slapd/schema_init.c b/servers/slapd/schema_init.c index 4063319636..4e8ac815f8 100644 --- a/servers/slapd/schema_init.c +++ b/servers/slapd/schema_init.c @@ -4116,7 +4116,7 @@ bootParameterValidate( /* path */ for ( p++; p < e; p++ ) { - if ( !AD_CHAR( *p ) ) { + if ( !SLAP_PRINTABLE( *p ) ) { return LDAP_INVALID_SYNTAX; } }