From: Kurt Zeilenga Date: Wed, 16 May 2001 19:20:29 +0000 (+0000) Subject: Add '=' to printableString to be consistent with ASN.1 description X-Git-Tag: LDBM_PRE_GIANT_RWLOCK~1407 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=1669cd4d7be059b883a779396dde60e189ead286;p=openldap Add '=' to printableString to be consistent with ASN.1 description of syntax. RFC 1778/2252 are wrong and will need to be updated. --- diff --git a/servers/slapd/slap.h b/servers/slapd/slap.h index 57911509f6..84a8a9ca07 100644 --- a/servers/slapd/slap.h +++ b/servers/slapd/slap.h @@ -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 */