]> git.sur5r.net Git - openldap/commitdiff
Clarify LDAP_ATTRCHAR
authorKurt Zeilenga <kurt@openldap.org>
Fri, 30 Jun 2000 19:08:40 +0000 (19:08 +0000)
committerKurt Zeilenga <kurt@openldap.org>
Fri, 30 Jun 2000 19:08:40 +0000 (19:08 +0000)
include/ldap_pvt.h

index e025e04e55d2c03a42ee15d97976242114f55566..f6eeb6f3792103392a2f69f3692ececb7f2ee754 100644 (file)
@@ -113,7 +113,7 @@ LDAP_F (int) ldap_pvt_unhex( int c );
 #define LDAP_OIDCHAR(c)                ( LDAP_DIGIT(c) || (c) == '.' )
 
 #define LDAP_LEADATTRCHAR(c)   ( LDAP_LEADKEYCHAR(c) || LDAP_LEADOIDCHAR(c) )
-#define LDAP_ATTRCHAR(c)               ( LDAP_KEYCHAR((c)) || (c) == '.' )
+#define LDAP_ATTRCHAR(c)               ( LDAP_KEYCHAR(c) || LDAP_OIDCHAR(c) )
 
 #define LDAP_NEEDSESCAPE(c)    ((c) == '\\' || (c) == '"')