mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-02-03 20:40:05 -05:00
BootParamSyntax: be more liberal than the ABNF such that
examples in RFC 2307 are treated as valid.
This commit is contained in:
parent
3b775fce8b
commit
4d22977f7f
1 changed files with 1 additions and 1 deletions
|
|
@ -4116,7 +4116,7 @@ bootParameterValidate(
|
|||
|
||||
/* path */
|
||||
for ( p++; p < e; p++ ) {
|
||||
if ( !AD_CHAR( *p ) ) {
|
||||
if ( !SLAP_PRINTABLE( *p ) ) {
|
||||
return LDAP_INVALID_SYNTAX;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue