From: Kurt Zeilenga Date: Fri, 30 Jun 2000 19:08:40 +0000 (+0000) Subject: Clarify LDAP_ATTRCHAR X-Git-Tag: LDBM_PRE_GIANT_RWLOCK~2499 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=0cfe5f75f8c7f7a20374bdf77b34cf25636686e7;p=openldap Clarify LDAP_ATTRCHAR --- diff --git a/include/ldap_pvt.h b/include/ldap_pvt.h index e025e04e55..f6eeb6f379 100644 --- a/include/ldap_pvt.h +++ b/include/ldap_pvt.h @@ -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) == '"')