From 4d22977f7f7216987094b238c32dfb9790634084 Mon Sep 17 00:00:00 2001 From: Kurt Zeilenga Date: Wed, 24 Jul 2002 15:29:22 +0000 Subject: [PATCH] BootParamSyntax: be more liberal than the ABNF such that examples in RFC 2307 are treated as valid. --- servers/slapd/schema_init.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } } -- 2.39.5