]> git.sur5r.net Git - openldap/commitdiff
Add '=' to printableString to be consistent with ASN.1 description
authorKurt Zeilenga <kurt@openldap.org>
Wed, 16 May 2001 19:20:29 +0000 (19:20 +0000)
committerKurt Zeilenga <kurt@openldap.org>
Wed, 16 May 2001 19:20:29 +0000 (19:20 +0000)
of syntax.  RFC 1778/2252 are wrong and will need to be updated.

servers/slapd/slap.h

index 57911509f6085e9c167c58b16b379ea92de8ed36..84a8a9ca077ddaa33f68d73a27ba30b960ffba3a 100644 (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 */