mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-21 03:10:25 +08:00
Add '=' to printableString to be consistent with ASN.1 description
of syntax. RFC 1778/2252 are wrong and will need to be updated.
This commit is contained in:
parent
ce8fcda8c4
commit
1669cd4d7b
@ -108,7 +108,7 @@ LDAP_BEGIN_DECL
|
||||
#define SLAP_PRINTABLE(c) ( ASCII_ALNUM(c) || (c) == '\'' || \
|
||||
(c) == '(' || (c) == ')' || (c) == '+' || (c) == ',' || \
|
||||
(c) == '-' || (c) == '.' || (c) == '/' || (c) == ':' || \
|
||||
(c) == '?' || (c) == ' ' )
|
||||
(c) == '?' || (c) == ' ' || (c) == '=' )
|
||||
#define SLAP_PRINTABLES(c) ( SLAP_PRINTABLE(c) || (c) == '$' )
|
||||
|
||||
/* must match in schema_init.c */
|
||||
|
Loading…
Reference in New Issue
Block a user