Skip to content
Snippets Groups Projects
Commit 1669cd4d authored by Kurt Zeilenga's avatar Kurt Zeilenga
Browse files

Add '=' to printableString to be consistent with ASN.1 description

of syntax.  RFC 1778/2252 are wrong and will need to be updated.
parent ce8fcda8
Branches
Tags
No related merge requests found
......@@ -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 */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment