mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-01-23 23:33:07 -05: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
1 changed files with 1 additions and 1 deletions
|
|
@ -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 a new issue