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:
Kurt Zeilenga 2001-05-16 19:20:29 +00:00
parent ce8fcda8c4
commit 1669cd4d7b

View File

@ -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 */